JEE Series: JavaServer Pages + JavaBeans and no web.xml

In this very first post of the JEE Series we create a simple web app based on JSP and JavaBeans. Bring an IDE of your choice and give it a swing. Let’s generate a new project using the maven web archetype: [bash] mvn archetype:generate -DgroupId=com.example -DartifactId=simple-web-jsp -DarchetypeArtifactId=maven-archetype-webapp -Dpackage=com.example -Dversion=1.0-SNAPSHOT [/bash] Read more…