我们正在使用Spring 3.0.5运行Tomcat 6.0,因为某些原因我们无法获得jsps来评估$ {blah}。这是一个maven项目,如果重要的话,有许多单独的模块,Eclipse Helios。
这是我的web.xml的剪辑
<web-app id="WebApp_ID" version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>xc.rio</display-name>...
并不是这个(&lt;%@ page isELIgnored =“false”%&gt;)因为当我把它放在我的jsp中时,页面只呈现为文本意味着
<%@ page isELIgnored="false" %>
<HTML>
...${blah}...
$ {2 + 2}未评估。我也试过tomcat 7. = - (
更新: 我做了一个独立的弹簧和非弹簧应用程序和EL工作。我认为它与viewResolver有关,但我猜不是这样。
<?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:util="http://www.springframework.org/schema/util"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:camel="http://camel.apache.org/schema/spring"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<mvc:annotation-driven />
<bean id="handlerMapping" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
<property name="detectHandlersInAncestorContexts" value="true" />
</bean>
<mvc:default-servlet-handler/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
答案 0 :(得分:3)
尝试删除导致spring将页面作为静态资源提供的<mvc:default-servlet-handler/>
。