spring mvc 无法在jsp里得到数据

如下是我的代码,我在jsp里得不到数据,谢谢!!!userHandler.java@Controller@RequestMapping(value="/welcome")... 如下是我的代码,我在jsp里得不到数据,谢谢!!!
userHandler.java

@Controller
@RequestMapping(value="/welcome")
public class UserHandler {

@RequestMapping(method = RequestMethod.GET)
public String getUser(ModelMap model) {
model.addAttribute("message","welcome");
return "hello";
}
}

hello.jsp
<body>
<h2>Users are below:</h2>
${message}
</body>

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>
<!-- The front controller of this Spring Web application, responsible for
handling all application requests -->
<servlet>
<servlet-name>springDispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/spring-bean-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

<!-- Map all requests to the DispatcherServlet for handling -->
<servlet-mapping>
<servlet-name>springDispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>

spring-bean-config.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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<mvc:annotation-driven />
<tx:annotation-driven />
<context:component-scan base-package="com.ivision.batch12" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>

服务器是tomcat7,我在服务器里输入
localhost:080/batch12/welcome
结果如下
展开
 我来答
谭奇源
2013-07-16 · TA获得超过166个赞
知道小有建树答主
回答量:179
采纳率:50%
帮助的人:67万
展开全部
这里不是没有得到数据,而是${message}的EL表达式根本没有执行,还在页面打印了${message},如果真的没有数据,jsp页面是不会显出${}的,会是空白。检查一下你的jsp页面吧。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
你猜_662
2013-07-28
知道答主
回答量:14
采纳率:100%
帮助的人:4.3万
展开全部
首先你要加入jstl要用的jar包,然后在页面写jstl的taglib,然后才能用他的表达式,不然显示的就是你这样子的。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xk0230
2013-07-29 · TA获得超过139个赞
知道答主
回答量:134
采纳率:0%
帮助的人:30.2万
展开全部
isELIgnored="false" 在jsp页面加上这句话试试看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
frozen_cmlei
2013-07-17
知道答主
回答量:17
采纳率:0%
帮助的人:14万
展开全部
不会是用的html吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式