IntelliJIDEA Getting+Started+with+Spring+MVC,+Hibernate+and+JSON

Author Avatar
thychan Jul 25, 2017
  • Read this article on other devices

IntelliJIDEA Getting+Started+with+Spring+MVC,+Hibernate+and+JSON

作者: HackerVirus

发布时间:2015-07-08 18:37:49

https://confluence.jetbrains.com/display/IntelliJIDEA/Getting+Started+with+Spring+MVC,+Hibernate+and+JSON

In this tutorial we will create a simple web application using Spring MVC, Hibernate and JSON. We will use Maven to manage dependencies and IntelliJ IDEA to create, run and debug an application on local Tomcat application server.

1. Create a project

Open Project Wizard and select Spring MVC in Spring section. If you have already configured the application server, you can select it in theApplication Server field. With IntelliJ IDEA you can deploy applications to Tomcat, TomEE, Glassfish, JBoss, WebSphere, Jetty,Geronimo, Resin, Cloud Foundry and CloudBees.

img

Change Project name, Project location and Base package if necessary. The IDE will create a “Hello world” project with a simple controller and view.

img

The new project comes with Maven‘s pom.xml file. You can manage project dependencies through this file or through the dedicated Maventool window.

img

When you change Maven‘s dependencies, IntelliJ IDEA applies the corresponding changes to the project automatically. You can check it in the
Project Structure → Modules dialog.

img

Besides dependencies, IntelliJ IDEA also imports the artifacts definition from pom.xml. You can check the artifacts settings in the
Project Structure → Artifacts dialog.

img

The artifacts define the structure of what will be deployed to the application server when you click Run → Run ‘Tomcat 7.0’.

2. Create run configuration

If you haven’t specified Application server in Project Wizard you can do it now via Run → Edit Configurations….

img

Don’t forget to specify the artifacts to deploy for this run configuration via the
Deployment tab.

img

If you have configured at least one run configuration for an application server, IntelliJ IDEA shows the Application Servers tool window to manage the application state on the application server. You can see the list of application servers, start or stop servers, see deployed applications, manage artifacts to deploy, and manage the application state.

img

3. Run the application

After the artifacts and run configurations are defined, you can deploy the application by simply running your configuration or via a shortcut right from the Application Servers tool window.

img

4. Add dependencies

Since we are going to create a database for our application, we need Spring Data, Hibernate and HSQLDB libraries. In order to implement JSON API for our application we need JSON library. Finally, we will need JSTL library to use in application’s view.

We have to define all these dependencies in our pom.xml file. The IDE will automatically download the corresponding libraries and add to the artifact.

5. Create persistence.xml

Now let’s define resources/META-INF/persistence.xml file to initialize Hibernate‘s entity manager over JPA.

6. Define model classes

Define a model class for user entity using JPA annotations.

Define a Spring repository for the user entity.

7. Register repository, entity manager factory and transaction manager

Now we have to register the user repository, an entity manager factory and a transaction manager in webapp/WEB-INF/mvc-dispatcher-servlet.xmlfile.

The model for our application is ready, so we can implement the controller.

8. Define controller

Let’s rename HelloController to UserController and add the following code:

As you can see, we have defined three methods for listing, adding and deleting user entities. The methods are mapped to the corresponding URLs.

9. Define view

Let’s rename hello view (and corresponding hello.jsp file) to users (and users.jsp , respectively). If you rename the view name from usage,IntelliJ IDEA applies the corresponding changes to JSP files automatically.

10. Run the application

The application should be ready now.

img

11. Debug application

If you need to debug your application, just add a breakpoint and re-run the application in debug mode via Run → Debug ‘Tomcat 7.0’….

img

12. Add JSON API

Finally, let’s output the created users via JSON by implementing this simple Controller’s method:

Run the application and open http://localhost:8080/api/users.

img

Download the final code and IntelliJ IDEA‘s project files from GitHub.