From the course: Building RESTful Web Services with DropWizard

Unlock this course with a free trial

Join today to access over 22,500 courses taught by industry experts.

Dropwizard project structure

Dropwizard project structure

- [Instructor] So let's take a brief look at the file structure inside of our application. If we take a look at what we've created in this project, we have these folders here and some files here. So if you want to know how to get started with the project, you can click on the README and follow the instructions, and then as I explained previously, you're going to see that we have all the configurations of this project in this XML file here. So if you're curious about which version we're using, you can see that here, and so on and so forth, and then you have Source and Target. So Target is going to be generated from what we build in Source. So if we take a look at the Source folder here, You're going to have Main, and then you're going to have Test. So Test is where you put your tests when you want to test specific things inside of your application, so you have this. And then the Main one is where we're going to work. Inside…

Contents