官术网_书友最值得收藏!

Building  Hello World web app using Spring Boot

In this section, we will go through the steps required to build a Hello World Web App using Spring Boot. The following given steps assume that you have set up Spring STS within your Eclipse IDE by following the steps given earlier. Now, with the steps given next, one can set up the Hello World web app in an easy manner:

  1. Press Ctrl N to open up the Project creation Wizard dialog box.
  2. Write Spring in the Wizards text field. This will show various project options related to Spring projects. Select the option Spring Starter Project, and click on Next.
  1. Name the project HelloWorld, or leave the default name demo, and click on Next:
  1. Select Web in the list of dependencies as shown in the following screenshot, and click on Finish:
  1. Clicking on Finish will create a HelloWorld project whose file structure will look as seen in the following screenshot. Pay attention to the annotation @SpringBootApplication in the HelloWorldApplication class shown in the screenshot. Spring applications are commonly found to be annotated with annotations such as @Configuration, @EnableAutoConfiguration, and @ComponentScan. Spring Boot came up with @SpringBootApplication as an alternative to using three annotations together:
  1. Right-click on the project, and start Spring Boot App, as shown in the following screenshot. It will start the app on the embedded Tomcat server. Access the URL http://localhost:8080 on your browser. It will show up a page with the heading as Whitelabel Error Page followed by some content.
  1. At times, the project may not run successfully due to one or more errors encountered during setting up the project. One can open the Problems View, and find out if there are any issues. As creating and running a Maven project requires the dependencies to be downloaded from the internet, it is to be ensured that the internet connection is active while setting up and running the project.
  2. It is time to write some custom code in the HelloWorldApplication Java file, and run the app. Place the following code (in bold) as shown and run the app. Access the URL http://localhost:8080, and you will find the following getting printed: Hello World. How are you?. Pay attention to the usage of the @Controller annotation, which is required to annotate a class as a controller. In case one wants the class to serve REST APIs, one can use either @Controller and @ResponseBody together appropriately at the class and method level, or use @RestController at the class level:
        @Controller
@SpringBootApplication
public class HelloWorldApplication {

@RequestMapping("/")
String home() {
return "Hello world. How are you?";
}

public static void main(String[] args) {
SpringApplication.run(HelloWorldApplication.class, args);
}
}
  1. When wanting to use the JSP files for displaying views, the following steps needed to be taken:
  • Include the following code in the pom.xml file. This is done to enable JSP support:
            <dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
  • The following needs to be put in src/main/resources/application.properties in order to define the template prefix and suffix for the JSP files:
            spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
  • Create the JSP files in the folder src/main/resources/META-INF/resources/WEB-INF/jsp/. For the sake of this current example, let's call the file as index.jsp. 
  • The code for @Controller would look like the following to render the index.jsp file. Note the absence of the @ResponseBody annotation on the home() method. This is why the JSP file, index.jsp, is rendered. Otherwise, a string object would have been returned as a response leading to errors while rendering.

 

            @Controller
@SpringBootApplication
public class HelloWorldApplication {

@RequestMapping("/")
String home() {
return "index";
}

public static void main(String[] args) {
SpringApplication.run(HelloWorldApplication.class, args);
}
}
主站蜘蛛池模板: 同江市| 新民市| 夏邑县| 呈贡县| 凤凰县| 云霄县| 左贡县| 舞钢市| 康保县| 金溪县| 淮安市| 清水县| 梓潼县| 化德县| 德化县| 秦安县| 达日县| 金坛市| 保靖县| 大理市| 开鲁县| 濮阳市| 琼海市| 陇南市| 麻江县| 壶关县| 清水河县| 东辽县| 信丰县| 十堰市| 通江县| 梅州市| 阜康市| 奉节县| 蓬安县| 云安县| 莱西市| 漳平市| 玉田县| 和硕县| 花莲县|