- vừa được xem lúc

How to create first application on Spring MVC?

0 0 14

Người đăng: Đào Kim Dương

Theo Viblo Asia

In order to create and develop a Spring MVC application, we need some prerequisite software and tools. We will setup Java, configure Maven build tool, install Tomcat web server, configure the Spring Tool Suite, and create and run first Spring MVC project.

Setting up Java

Installing JDK

  1. Go to Java SE download page on Oracle website at here. And download Java SE Development Kit.
  2. You must choose which corresponds to your Windows operating system architecture; for instance, if your operating system is of type 32 bit,click on the download link that corresponds to Windows x86, if 64 bit, click on the download link that corresponds to Windows x64.
  3. Once the download is finished, go to the downloaded directory and double-click on the installer. This will open up a wizard window. Just click through the next buttons in the wizard, leaving the default options alone, and click on the Close button at the end of the wizard:
  4. Now you can see the installed JDK directory in the default location; in our case, the default location is C:\Program Files\Java\jdk_version (in this situtation, version = 1.8.0_60).

Setting up environment variables

  1. Navigate to Start Menu | Settings | System | About | System info | Advanced system settings.
  2. A System Properties window will appear; in this window, select the Advanced tab and click on the Environment Variables button to open the Environment Variables window.
  3. Now, click on the New button in the System variables panel and enter JAVA_HOME as the variable name and enter the installed JDK directory path as the variable value; in our case, this would be C:\ProgramFiles\Java\jdk1.8.0_91. If you do not have proper rights for the operating system, you will not be able to edit System variables; in that case, you can create the JAVA_HOME variable under the User variables panel.
  4. Now, in the same System variables panel, double-click on the path variable entry; an Edit System Variable window will appear.
  5. Edit Variable value of Path by clicking the new button and enter the following text %JAVA_HOME%\bin as the value. If you are using a Windows operating system prior to version 10, edit the path variable carefully; you should only append the text at the end of an existing path value. Don't delete or disturb the existing values; make sure you haven't missed the ; (semi-colon) delimited mark as the first letter in the text that you append:
  6. Now click on the OK button.

Check if install successful: if press java --version, we can see same as follow:
C:\Users\Amuthan>java -version
java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b15, mixed mode)

Installing the Maven build tool

Apache Tomcat is a popular Java web server and servlet container. Let's take a look at how we can install the Tomcat web server:

  1. Go to the Apache Tomcat home page at https://tomcat.apache.org/.
  2. Click on the download link of version you want.
  3. Click on 32-bit/64-bit Window Service Installer(pgp,md5,sha1) link; it will start downloading the installer.
  4. Once the download is finished, go to the downloaded directory and double-click on the installer; this will open up a wizard window.
  5. Just click through the Next buttons in the wizard, leaving the default options alone, and click on the Finish button at the end of the wizard. Note that before clicking on the Finish button, just ensure that you have unchecked Run Apache Tomcat checkbox. Installing Apache Tomcat with the default option works successfully only if you have installed Java in the default location. Otherwise, you have to correctly provide the JRE path according to the location of your Java installation during the installation of Tomcat, as shown in the following screenshot:

Configuring a development environment

We installed Java and Maven to compile and package our Java source code and installed Tomcat to deploy and run our application. So now we have to start write Spring MVC code so that we can compile, package, and run the code. An integrated development environment (IDE) can help us with these features to develop the code faster and error free. We are going to use Spring Tools 4 as our IDE.

  1. Go to https://spring.io/tools and download the corresponds version with your Window operating system architecture type (32 or 64-bit).
  2. Once the download is finished, go to the downloaded directory and extract the .zipor jar file into a convenient directory of your choice.
  3. You can find contents.zip in that folder you extracted. Extract it. You can find a directory called sts-version.RELEASE. Here, you can find Spring tools suite appication.
    We have almost installed all the tools and software required to develop a Spring MVC application; so now, we can create our Spring MVC project on STS. However, before jumping into creating a project, we need to perform the following two final configurations on our STS in order to use STS effectively:
  4. Configuring Maven on STS
  5. Configuring Tomcat on STS

Configuring Maven on STS

  1. Open STS if it is not already open. When you open STS for the very first time after installing, it will ask you to provide a workspace location. This is because when you create a project on STS, all your project files will be created under this location only. Provide a workspace directory path as you wish and click on the OK button.
  2. Navigate to Window | Preferences | Maven | Installations.
  3. On the right-hand side, you can see the Add button to locate Maven's installation.
  4. Click on the Add button and choose our Maven's installed directory, and then click on the Finish button, as shown in the following screenshot:
  5. Now don't forget to select the newly added Maven installation as your default Maven installation by selecting the checkbox;
  6. Click on the Apply and Close button in the Preferences window and close it.

Configuring Tomcat on STS

  1. Open STS from the desktop icon, if it is not already open.
  2. Go to the menu bar and navigate to Window | Preferences | Server |Runtime Environments.
  3. You can see the available servers listed on the right panel. Now click on the Add button to add our Tomcat web server. You may also see Pivotal tc Server Developer Edition (Runtime) v3.1 listed under the available servers, which comes along with the STS installation. Although STS might come with an internal Pivotal tc Server, we chose to use the Tomcat web server as our server runtime environment because of its popularity.
  4. A wizard window will appear; type tomcat in the Select the type of runtime environment: text box, and a list of available Tomcat versions will be shown. Just select Tomcat v8.5 and SELECT the Create a new local server checkbox. Finally, click on the Next button, as shown in the following screenshot:
  5. In the next window, click on the Browse button and locate Tomcat's installed directory, and then click on the OK button. You can find Tomcat's installed directory under C:\Program Files\Apache Software Foundation\Tomcat 8.5 if you have installed Tomcat in the default location. Then, click on the Finish button, as shown in the following screenshot:

Creating our first Spring MVC project

  1. In STS, navigate to File | New | Other; a New Project wizard window will appear.
  2. Select Maven Project from the list and click on the Next button, as shown in the following screenshot:
  3. Now, a New Maven Project dialog window will appear; just select the checkbox that has the Create a simple project (skip archetype selection) caption and click on the Next button.
  4. The wizard will ask you to specify artifact-related information for your project; just enter Group Id as com.packt and Artifact Id as webstore. Then, select Packaging as war and click on the Finish button, as shown in the following screenshot:

Adding Java version properties in pom.xml

  1. Open pom.xml; you can find pom.xml under the root directory of the project itself.
  2. You will see some tabs at the bottom of the pom.xml file. Select the Overview tab. If you do not see these tabs, then right-click on pom.xml, select the Open With… option from the context menu, and choose Maven POM editor.
  3. Expand the Properties accordingly and click on the Create button.
  4. Now, an Add property window will appear; enter Name as maven.compiler.source and Value as 1.8, as shown in the following screenshot:
  5. Similarly, create one more property with Name as maven.compiler.target and Value as 1.8.
  6. Finally, save pom.xml.

What happend?

We just created the basic project structure. Any Java project follows a certain directory structure to organize its source code and resources. Instead of manually creating the whole directory hierarchy by ourselves, we just handed over that job to STS. By collecting some basic information about our project, such as Group Id, Artifact Id, and the Packaging style, from us, it is clear that STS is smart enough to create the whole project directory structure with the help of the Maven. Actually, what is happening behind the screen is that STS is internally using Maven to create the project structure. We want our project to be deployable in any servlet container-based web server, such as Tomcat or Jetty, and that's why we selected the Packaging style as war. Finally, you will see the project structure in Package Explorer, as shown in the following screenshot:

If you encounter a maven error on your pom file saying web.xml is missing and < failOnMissingWebXml > is set to true, then it means it is expecting a `web.xml` file in your Maven project because it is a web application, as we have chosen packaging as war. However, nowadays in web applications web.xml file is optional. Add the following configuration in your `pom.xml` within < project > tag to fix the error:
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> </plugin> </plugins>
</build>

But error in line 1 is no problem, later you can run project with this error.

Spring MVC dependencies

  1. Open pom.xml; you can find pom.xml under the root directory of the project itself.
  2. You will see some tabs at the bottom of the pom.xml file. Select the Dependencies tab.
  3. Click on the Add button in the Dependencies section. Don't get confused with the Add button of the Dependencies Management section. You should choose the Add button from the lefthand side of the panel.
  4. A Select Dependency window will appear; enter Group Id as org.springframework, Artifact Id as spring-webmvc, and Version as 4.3.0.RELEASE. Select Scope as compile and then click on the OK button, as shown in the following screenshot:

  1. Similarly, add the dependency for JavaServer Pages Standard Tag Library (JSTL) by clicking on the same Add button; this time, enter Group Id as javax.servlet, Artifact Id as jstl, Version as 1.2, and select Scope as compile.
  2. Finally, add one more dependency for servlet-api; repeat the same step with Group Id as javax.servlet, Artifact Id as javax.servlet-api, and Version as 3.1.0, but this time, select Scope as provided and then click on the OK button.
  3. As a last step, don't forget to save the pom.xml file.

Adding a welcome page

  1. Create a webapp/WEB-INF/jsp/ folder structure under the src/main/ folder; create a JSP file called welcome.jsp under the src/main/webapp/WEBINF/jsp/ folder, and add the following code snippets into it and save it:
<%@ taglib prefix="c"
uri="http://java.sun.com/jsp/jstl/core"%> <!DOCTYPE html>
<html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Welcome</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> </head>
<body> <div class="jumbotron"> <h1> ${greeting} </h1> <p> ${tagline} </p> </div>
</body>
</html>
  1. Create a class called HomeController under the com.packt.webstore.controller package in the source directory src/main/java and add the following code into it:
package com.packt.webstore.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HomeController { @RequestMapping("/") public String welcome(Model model) { model.addAttribute("greeting", "Welcome to Web Store!"); model.addAttribute("tagline", "The one and only amazing web store"); return "welcome"; }
}

Configuring the Dispatcher servlet

  1. Create a class called WebApplicationContextConfig under the com.packt.webstore.config package in the source directory src/main/java and add the following code into it:
package com.packt.webstore.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.DefaultServletHandlerConfigurer;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
import org.springframework.web.servlet.view.JstlView; @Configuration
@EnableWebMvc
@ComponentScan("com.packt.webstore")
public class WebApplicationContextConfig extends WebMvcConfigurerAdapter { @Override public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) { configurer.enable(); } @Bean public InternalResourceViewResolver getInternalResourceViewResolver() { InternalResourceViewResolver resolver = new InternalResourceViewResolver(); resolver.setViewClass(JstlView.class); resolver.setPrefix("/WEB-INF/jsp/"); resolver.setSuffix(".jsp"); return resolver; }
}
  1. Create a class called DispatcherServletInitializer under the com.packt.webstore.config package in the source directory src/main/java and add the following code into it:
package com.packt.webstore.config; import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;
public class DispatcherServletInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { @Override protected Class<?>[] getRootConfigClasses() { return null; } @Override protected Class<?>[] getServletConfigClasses() { return new Class[] { WebApplicationContextConfig.class }; } @Override protected String[] getServletMappings() { return new String[] { "/" }; }
}

Deploying our project

  1. Right-click on your project from Package Explorer and navigate to Run As | Run on Server.
  2. A server selection window will appear with all the available servers listed; just select the server that we have configured, Tomcat 8.5.
  3. At the bottom of the window, you can see a checkbox with the caption that says Always use this server when running this project; select this checkbox and enter the Finish button, as shown in the following screenshot:
  4. Now you will see a web page that will show you a welcome message.

😁😁😁😁😁😁

Bình luận

Bài viết tương tự

- vừa được xem lúc

Đôi điều về mô hình MVC

Là một lập trình viên Web không thể không biết đến mô hình MVC. Nó là một mô hình được sử dụng trong hầu hết các dự án phát triển Web.

0 0 29

- vừa được xem lúc

Tạo website ASP.NET MVC đơn giản (P3)

Ở bài viết trước, mình đã giới thiệu cách Tạo mới Controller và View theo mô hình MVC. Bài viết này, mình sẽ viết về cách Tạo mới Model và một chút giới thiệu về Razor View nha.

0 0 42

- vừa được xem lúc

Một chút về MVC, MVP và MVVM

MVC, MVP, và MVVM là 3 mô hình thông dụng khi phát triển phần mềm. Trong bài viết này, mình sẽ giới thiệu với các bạn 3 mô hình Model View Controller (MVC), Model View Presenter (MVP) và Model View Vi

0 0 74

- vừa được xem lúc

Cài đặt ứng dụng PHP thuần sử dụng MVC và OOP

1. Giới thiệu về MVC. 1.1.

0 0 41

- vừa được xem lúc

[Design Patterns] MVC Pattern - Phần 1: Giới thiệu

MVC là viết tắt của Model - View - Controller, tạm dịch nôm na là Mô Phỏng - Hiển Thị - Điều Hành. MVC được sử dụng khi chúng ta muốn tách rời logic Mô Phỏng hoạt động của phần mềm Model và logic Hiển

0 0 30

- vừa được xem lúc

Tìm Hiểu Về Mô Hình 3 Lớp (3 Layer)

Do dạo gần đây mình đang làm về một số app desktop sử dụng mô hình 3 lớp, nên mình sẽ note lại những điều cần chú ý trong mô hình 3 lớp. Khái niệm:.

0 0 24