我尝试学习springmvc。但是,当我开始时,遇到了一个问题。
我认为这是一个简单的问题,我在互联网上搜索并找到了很多示例,但我没有找到原因,这里是代码。
HomeControll.java
package cn.qingtianr.controll; import org.springframework.stereotype.Controller; import org.springframework.ui.ModelMap; import org.springframework.web.bind.annotation.RequestMapping; /** * Created by jack on 16-5-20. */ @Controller public class HomeControll { @RequestMapping("/") public String index(ModelMap model){ String s = "hhh"; model.addAttribute("hello",s); return "index"; } }
index.jsp
<%-- Created by IntelliJ IDEA. User: jack Date: 16-5-20 Time: 下午6:31 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> ${hello} </body> </html>
web.xml
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>Archetype Created Web Application</display-name> <servlet> <servlet-name>hello</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>hello</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
hello-servlet.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <context:component-scan base-package="cn.qingtianr.controll"/> <mvc:default-servlet-handler/> <mvc:annotation-driven/> <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> <property name="prefix" value="/"/> <property name="suffix" value=".jsp"/> </bean> </beans>
pom.xml
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>cn.qingtianr</groupId> <artifactId>springmvctest</artifactId> <packaging>war</packaging> <version>1.0-SNAPSHOT</version> <name>springmvctest Maven Webapp</name> <url>http://maven.apache.org</url> <properties> <spring.version>4.2.5.RELEASE</spring.version> <spring-data.version>1.2.0.RELEASE</spring-data.version> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> </dependencies> <build> <finalName>springmvctest</finalName> </build> </project>
当我访问index.jsp时,我的浏览器上${hello}没有显示not hhh。也许我得到了一个低级错误,但我真的不知道。
${hello}
hhh
有人可以帮助我吗?
看起来像带有DispatcherServlet映射的老旧SpringMVC问题。
您已将servlet映射到/,这意味着它将获得其他servlet(包括默认容器一个)无法解析的所有URL。一个常见的问题是,Spring MVCDispatcherServlet将永远不会收到空的URL’/’。
因此,我假设您直接调用index.jsp文件,而无需先单击控制器。但是然后(当然),hello模型变量尚未放入请求属性中,因此无法使用。
hello
怎么修:
为了避免直接打到jsp文件,好的做法建议将它们放在WEB-INF文件夹下。这样,它们将永远不会由servlet容器作为服务器,并且仅当从WEB-INF /jsp / index.jsp下的控制器=> move index.jsp转发到并且相应地更改<property name="prefix" value="/WEB-INF/jsp/"/>jspViewResolver配置时才会显示。
<property name="prefix" value="/WEB-INF/jsp/"/>
然后使用所引用帖子中的一种解决方案。我建议使用以下方式将DispatcherServlet映射到/*由ResourceHttpRequestHandler处理的文件夹,并将静态资源移动到该文件夹:
/*
<mvc:resources mapping="/resources/**" location="/public-resources/"/>
当您使用xml配置时