From the course: Java EE: Servlets and JavaServer Pages (JSP)

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Alternative setups

Alternative setups

From the course: Java EE: Servlets and JavaServer Pages (JSP)

Start my 1-month free trial

Alternative setups

- [Instructor] Let us now look at the alternatives that you have for the setup of this application. We created a very basic dynamic web project. We generated a structure for as an eclipse. However, you can actually choose Maven or Gradle, which are built-in project management tools, to set up the entire project structure and then configure the build path with all the libraries necessary. So we added all the libraries manually. For example, the servlet JSP APIs or the JDBC jar; but the built-in project management tools can now actually help you configure that build path automatically. The second one is we chose StormCAD Server as our software for deployment of the application; but you can choose IBM JBoss, WebLogic, GlassFish, or any other Java enterprise edition-compliant container or server for hosting the application. Next, we can ask the build tool itself to deploy and run the project on server. As an inside eclipse IDE, we actually chose the option of run as run on server or we…

Contents