spring boot学习02如何在spring boot项目中访问jsp

Posted NotFoundObject

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot学习02如何在spring boot项目中访问jsp相关的知识,希望对你有一定的参考价值。

1.配置application.properties文件

打开application.properties追加

spring.mvc.view.prefix=/WEB-ROOT/

spring.mvc.view.suffix=.jsp


2. 在pom.xml中添加访问jsp页面的jar包

  <!-- 访问jsp页面所需要的以下依赖包 -->
      <dependency>  
          <groupId>org.springframework.boot</groupId>  
          <artifactId>spring-boot-starter-tomcat</artifactId>  
          <scope>provided</scope>  
      </dependency>  


      <dependency>  
          <groupId>org.apache.tomcat.embed</groupId>  
          <artifactId>tomcat-embed-jasper</artifactId>  
          <scope>provided</scope>

      </dependency>

 

 

3.创建IndexControl类

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

 

@Controller

public class IndexControl {

  @RequestMapping(value="/index",method = RequestMethod.GET

   public String index() {

      return "index"; 

     }

 

}

在项目的contrl包下创建IndexControl类

 

4.创建jsp文件

新建index.jsp文件,放到src\main\webapp\WEB-ROOT \目录下,没有目录新建即可

5.访问地址如下:

http://127.0.0.1:8080 或者http://localhost:8080/index/都可以访问到我们的首页文件index.jsp











以上是关于spring boot学习02如何在spring boot项目中访问jsp的主要内容,如果未能解决你的问题,请参考以下文章

spring boot 用mysql访问数据

Spring Boot 中的单元测试

如何掌握 Spring,Spring Boot 全家桶?系统学习 Spring 的大纲一份(实战教学)

Spring Boot with Spring-Data-JPA学习案例

和spring cloud/boot 学习如何管理自己的组件

Spring 如何在 Spring Boot 中设置数据源