我使用Sping Boot 简单应用程序来显示JSP。然而,页面不是呈现JSP,而是在浏览器中下载。请建议?
应用.属性
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/tcadmin?zeroDateTimeBehavior=convertToNull
spring.datasource.username=tcuser
spring.datasource.password=tcuserpass
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
server.port=9090
spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate5.SpringSessionContext
server.context-path=/internal
spring.mvc.view.prefix:/
spring.mvc.view.suffix:.jsp
我创建了src/main/webapp文件夹,并将printReciept.jsp放在其中。
Pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.a2b</groupId>
<artifactId>A2BInternalModules</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>A2BInternalModules</name>
<description>Sitemap Generator for A2B</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!-- Tomcat Embed -->
<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>required</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
PrintRecieptController.java
@RequestMapping(value = "/PrinReciept", method = RequestMethod.GET)
public String welcome(Model model) {
model.addAttribute("message", "Hello World !!!");
return "printReciept";
}
printReciep.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
Print Receipt
</body>
</html>
控制器被击中,但不是呈现JSP,而是在浏览器中下载该页面。请建议。
7条答案
按热度按时间dddzy1tm1#
在Maven依赖项中,检查tomcat-embed版本,并在maven中心找到相关的tomcat-jasper版本依赖项。JSP编译需要此jar。由于它不是编译的,所以它是可下载的。
我的嵌入式tomcat版本是9.0.19,我得到了与该版本相关的碧玉。
x759pob22#
我得到了同样的错误,但我不把谁是负责转换我们的jsp文件的tomcat碧玉,
只需添加tomcat-jasper根据您的Spring Boot 使用tomcat
z9gpfhce3#
您缺少JEE依赖项。
另外,我强烈建议您将所有JSP放入WEB-INF文件夹(对于任何模板引擎都是如此),并选择一个前缀而不是root。如果您还希望从同一个应用程序提供一些类似REST的端点服务,那么它更安全、更灵活。
您还可以扩展WebMvcConfigurerAdapter并覆盖适用的方法。
“addViewControllers”非常好用,因此您不必为每个泛型JSP和分部创建控制器。注意,我没有在视图名中添加“.jsp”。
您可以使用根上下文作为前缀,并且仍然使用上述配置。
prdp8dxp4#
如果您使用的是IntelliJ,请尝试在添加碧玉的依赖项后重新加载maven依赖项。为我工作:)
记得添加正确的版本。
uqzxnwby5#
如果您使用的是Gradle,请添加以下依赖项
lyr7nygr6#
tomcat server版本和tomcat-embed-碧玉不匹配时会出现此问题。
如何查找服务器版本?
如果你在pom.xml或build.gradle中提到它,直接替换它。如果没有,请检查下面一行的日志,并在tomcat-embed-碧玉中使用相同的版本。应该能用
qv7cva1a7#
添加正确的版本号和此依赖项对我来说工作得很好: