我有以下项目结构
-src
-main
-java
-com
-test
Application.java
-controllers
MyController.java
-webapp
-WEB-INF
-jsp
main.jsp
我想做类似this的事情,但我的控制器中有以下内容
@Controller
@RequestMapping("/my/**")
public class MyController {
@RequestMapping("/home")
public String loadHomePage(Model m) {
m.addAttribute("name", "CodeTutr");
System.out.println("Test the view controller");
return "main";
}
}
当我转到http://localhost:8080/my/home
时,我收到了日志消息和404.我认为在春季4我不需要视图解析器,但如果我这样做,我该如何配置它。
更新
我使用以下内容创建了一个application.properties ...
spring.view.prefix: /WEB-INF/jsp/
spring.view.suffix: .jsp
application.message: Hello Phil
但它仍无效。
更新2
提供的Spring示例似乎也以与以下build.gradle ....相同的方式失败。
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.BUILD-SNAPSHOT")
}
}
apply plugin: 'war'
apply plugin: 'spring-boot'
apply plugin: 'groovy'
war { baseName='itext' }
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/libs-release" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-websocket")
compile("org.springframework:spring-messaging")
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
testCompile("org.springframework.boot:spring-boot-starter-test")
compile 'org.codehaus.groovy:groovy-all:2.2.0'
compile 'com.lowagie:itext:4.2.1'
compile 'com.google.code.gson:gson:2.2.4'
}
更新
我也尝试过明确......
@Bean
public ViewResolver getViewResolver(){
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setPrefix("/WEB-INF/jsp/");
resolver.setSuffix(".jsp");
return resolver;
}
这似乎不起作用。
答案 0 :(得分:1)
将此添加到build.gradle似乎可以解决问题......
compile 'com.google.code.gson:gson:2.2.4'
compile 'javax.servlet.jsp.jstl:jstl:1.2',
'taglibs:standard:1.1.2'
providedRuntime 'org.apache.tomcat.embed:tomcat-embed-jasper:8.0.8'
答案 1 :(得分:1)
我遇到了同样的问题,并将此片段添加到pom.xml中解决了:
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
我不知道为什么......
答案 2 :(得分:1)
添加以下依赖项时,可能没有任何错误。它对我有用。
据我所知,如果你不添加一些依赖项,jsp页面不会使用嵌入式tomcat进行渲染。
<dependencies>
<dependency>
<groupid>org.springframework.boot</groupid>
<artifactid>spring-boot-starter-web</artifactid>
</dependency>
<dependency>
<groupid>org.apache.tomcat.embed</groupid>
<artifactid>tomcat-embed-jasper</artifactid>
<scope>provided</scope>
</dependency>
<dependency>
<groupid>javax.servlet</groupid>
<artifactid>jstl</artifactid>
</dependency>
</dependencies>
答案 3 :(得分:0)
为Github创建了一个模板并在Github上共享 https://github.com/nagasrinu88/spring-boot-template
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
得到相同的问题并通过使用spring boot 1.4.0.RELEASE
添加上述行来解决答案 4 :(得分:-3)
您的弹簧配置中是否定义了InternalViewResolver?
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>