我有一个使用 JSP 的 java web 项目,现在我必须使用 jsf,因为我需要一个仅由 jsp 无法提供的功能。我遇到的问题是我不能将这两种技术合并到同一个项目中,而且我不能重新编码我已经使用 jsp 技术所做的所有事情。有人可以帮助我做我应该做的事情将这两种技术合并到同一个项目中吗?我正在使用带有 maven 的 spring、hibernate、tiles,这解释了我在尝试重新编码我所做的所有事情时遇到的困难;这是我的配置文件的一部分:
从我的 web.xml
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-security.xml
/WEB-INF/applicationContext.xml
</param-value>
</context-param>
从我的 application-context.xml
<context:component-scan base-package="org.me.myproject" />
<mvc:annotation-driven />
<import resource="hibernate-context.xml" />
<import resource="tiles-context.xml" />
从我的 spring-servlet.xml
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />
如果我尝试通过 JSF 更改解析器,即使使用 jsf 页面它也不起作用
org.springframework.web.jsf.el.SpringBeanFacesELResolver
有人知道我该怎么做吗,谢谢