我试图通过tutorialspoint运行spring mvc helloworld示例。但我没有在jsp页面中对模型图数据进行调整。我已经在web-inf / lib文件夹中添加了所有必需的jar。我也在使用<%@ page contentType="text/html; charset=UTF-8" isELIgnored="false" %>
。但我仍然没有在jsp页面中获取数据。我还在stackoverflow和http://www.mkyong.com/spring-mvc/modelandviews-model-value-is-not-displayed-in-jsp-via-el/上查看了这个问题的答案。
这是我的项目流程。请提前帮助谢谢
。 我的HelloController是
package com.tutorialspoint;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;
@Controller
@RequestMapping("/hello")
public class HelloController{
@RequestMapping(method = RequestMethod.GET)
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello Spring MVC Framework!");
return "hello";
}
}
web.xml是::
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Spring MVC Application</display-name>
<servlet>
<servlet-name>HelloWeb</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>HelloWeb</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
HelloWeb-servlet.xml是
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.tutorialspoint" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
这是我的hello.jsp ::
<%@ page contentType="text/html; charset=UTF-8" isELIgnored="false" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
hiiiii <h2>${message}</h2>
</body>
</html>
答案 0 :(得分:3)
我解决了这个问题。我所做的结构有一些问题。谢谢@ akfaz ..我们必须在web-inf中创建一个jsp文件夹然后必须为这段代码编写hello.jsp ...这里是我当前项目流程的屏幕排序工作正常,我能够获得ModelMap / Model&amp;的数据。使用spring MVC在jsp中查看。:)
答案 1 :(得分:1)
通常应用程序将查找文件夹webapp
(位于src/main/webapp/
),那里您应该移动整个WEB-INF文件夹以及相应的jsp
文件({{1} })。
然而,您使用的教程(src/main/webapp/WEB-INF/jsp/hello.jsp
)假设将整个WEB-INF复制到tomcat中的webapp文件夹 - 具有相应的库(
完成创建源文件和配置文件后,导出应用程序。右键单击您的应用程序并使用Export&gt; WAR File选项并将您的HelloWeb.war文件保存在Tomcat的webapps文件夹中。
对于未来,我强烈建议使用像maven这样的构建自动化工具,这将简化流程spring mvc with maven。
答案 2 :(得分:0)
将web.xml xsd架构从2.4更改为3,如:
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
metadata-complete="true" version="3.0">