2
I’m a beginner in development with Maven and I’m having some doubts. Next, I would like to create a Java web application, so I started running the following command:
mvn archetype:generate -DgroupId=com.myapp -DartifactId=CounterWebApp -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
Then the following directory structure was built:
My question: Because Maven did not create a directory for the . java, in my case I will use servelets ,where would I put them? , which directory?. It is necessary to create them manually?.
Thank you so much for your help!
– Canatto Filipe