美文网首页
springboot中的视图解析器 23

springboot中的视图解析器 23

作者: 张力的程序园 | 来源:发表于2020-04-09 20:01 被阅读0次

本节将讲述springboot中的视图解析。

1、环境约束

  • win10 64位操作系统
  • idea2018.1.5
  • maven-3.0.5
  • jdk-8u162-windows-x64

2、前提约束

2.1、方式一

  • 在pom.xml中加入依赖以及resource:
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
    ......
     <build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.*</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/webapp</directory>
                <includes>
                    <include>**/**</include>
                </includes>
            </resource>
        </resources>
     </build>
  • 在application.properties中配置:
server.port=8089
spring.mvc.view.prefix=/WEB-INF/pages/
spring.mvc.view.suffix=.jsp
  • 在项目/src/main/webapp下创建WEB-INF/pages文件夹
  • 在项目/src/main/webapp/WEB-INF/pages下创建index.jsp
  • 在主启动类同级目录下创建PageController.java
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class PageController {
    @RequestMapping("/toIndex")
    public ModelAndView toIndex()
    {
        ModelAndView modelAndView = new ModelAndView("index");
        return modelAndView;
    }
}

2.2、方式二

  • 在方式一的基础上,修改application.properties如下:
server.port=8089
  • 在主启动类同级目录下创建WebAppConfigurer.java
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.view.InternalResourceViewResolver;

@Configuration
public class WebAppConfigurer implements WebMvcConfigurer {
    @Bean
    public InternalResourceViewResolver viewResolver(){
        InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
        viewResolver.setPrefix("/WEB-INF/pages/");
        viewResolver.setSuffix(".jsp");
        return viewResolver;
    }
}

相关文章

网友评论

      本文标题:springboot中的视图解析器 23

      本文链接:https://www.haomeiwen.com/subject/ifshmhtx.html