在 Spring-MVC 中显示 JSP 页面时出现问题

问题描述 投票:0回答:1

我在 Spring-MVC 中显示 jsp 页面时遇到问题。 这是一个基本的 hello world Spring-MVC,带有 Gradle 和 IntelliJ CE:

我收到以下错误页面:

这是我的build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.5.RELEASE")
    }
}


plugins {
    id 'java'
}

group 'com.helloct'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

bootJar {
    baseName = 'gs-serving-web-content'
    version =  '0.1.0'
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'    

    compile("org.springframework.boot:spring-boot-starter-web")
    compile("org.springframework.boot:spring-boot-starter-thymeleaf")
    compile("org.springframework.boot:spring-boot-devtools")

    compile("org.springframework.boot:spring-boot-starter")
    compile("org.springframework:spring-jdbc")
    compile("com.h2database:h2")

    compile("com.fasterxml.jackson.core:jackson-databind")

    compile('javax.servlet:jstl')
    compile('org.apache.tomcat.embed:tomcat-embed-jasper')    

    compile 'javax.servlet.jsp:javax.servlet.jsp-api'        

    testCompile("junit:junit")
}

视图解析器文件:

@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "hello")
public class WebConfig implements WebMvcConfigurer {

    @Bean
    public ViewResolver viewResolver() {
        InternalResourceViewResolver resolver = new InternalResourceViewResolver();
        resolver.setViewClass(JstlView.class);
        resolver.setPrefix("/WEB-INF/views/");
        resolver.setSuffix(".jsp");
        return resolver;
    }
}

控制器页面:

@Controller
public class JSPController {
    @GetMapping("/jspPage")
    public String home(){
        return "jspPage";
    }
}

jsp页面位置:

application.properties 文件的内容:

spring.mvc.view.prefix=/WEB-INF/views/
spring.mvc.view.suffix=.jsp

使用默认模板引擎,页面显示正确,但是使用jsp,就不行

日志错误:

https://hastebin.com/lijekesoti.apache

注意:我知道 Thymleleaf 是 Spring 的推荐模板,但出于某种原因我想使用 JSP


更新

阅读这篇文章后,在paulsm4答案的帮助下,删除以下行:

compile("org.springframework.boot:spring-boot-starter-thymeleaf")

删除视图解析器文件解决了我的问题。

java spring spring-mvc jsp spring-boot
1个回答
2
投票

事实证明,让 JSP 与 Spring Boot 配合使用并非易事。事实证明,Spring Boot 1.x(大多数 Spring Boot/JSP 教程都是针对该版本编写的)和 Spring Boot 2.x 之间存在显着变化。

我发现这些资源很有帮助:

我让 JSP 可以与 Spring Boot 1.x 和 2.x 以及 Maven 和 Gradle 一起使用。我的项目在 GitHub 上:

这些是我需要做的重点:

  1. 我使用 Eclipse STS 创建了我的入门项目。

    指定“War”包装(相对于默认的“Jar”)非常重要

  2. 我在我的

    build.gradle
    中添加了以下依赖项:

     dependencies {
       compile('org.springframework.boot:spring-boot-starter-web')
       compile('javax.servlet:jstl')
       compile('javax.servlet:javax.servlet-api')
       compile('org.apache.tomcat.embed:tomcat-embed-jasper')
       compile('org.webjars:bootstrap:4.1.0')
       testImplementation('org.springframework.boot:spring-boot-starter-test')
    

    事实证明“tomcat-embedded”需要NOT被指定(它默认包含在spring-boot-starter-web中)。

    但事实证明,嵌入式 Tomcat 不会处理 JSP,除非您显式包含

    tomcat-embed-jasper

    不要指定“thymeleaf”依赖项 - 它会与“jasper”冲突。

  3. 按照其他教程,我在我的

    application.properties
    中添加了这些行:

     spring.mvc.view.prefix: /WEB-INF/jsp/
     spring.mvc.view.suffix: .jsp
    

    我还添加了这些行到我的根类中:

     @SpringBootApplication
     public class Test7Application extends SpringBootServletInitializer {
        ...  
        @Override
        protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
           return application.sources(Test7Application.class);
        }
    
        public static void main(String[] args) {
           SpringApplication.run(Test7Application.class, args);
        }
    
  4. 不幸的是,“其他教程”经常说创建文件夹

    src/main/webapp/WEB-INF/jsp/
    。这不起作用。

    相反,我将

    test.jsp

     文件放在文件夹 
    src/main/resources/META-INF/resources/WEB-INF/jsp
     中。

    这些链接解释了原因:

  • Spring Boot JSP 404
  • 为什么spring boot 1.5.3 jar无法识别src/main/resources/META-INF/resources/中的jsp文件
    至此,我已经成功地能够使用 Spring Boot 显示静态页面和 .jsp 页面了。
© www.soinside.com 2019 - 2024. All rights reserved.