当前位置: 首页 > 知识库问答 >
问题:

JSF 2 Spring 3:无法使其工作

李文轩
2023-03-14

我真的无法解决这个问题。首先,我从STS创建了一个Spring模板项目(Spring MVC)。

然后我完全复制了http://blog.terrencemiao.com/archives/spring-3-shacks-up-jsf-2-the-maverick-way报告的代码,它对我不起作用。

我认为那段代码中至少有一个错误,那就是“应用程序onfigure.xml应该是应用程序ontext.xml”。我更正了它,但是它还不起作用。

除了该网站(相同结构)中报告的文件外,我还有:

(1)根上下文(WEB-INF/Spring)

<?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:faces="http://www.springframework.org/schema/faces"
 xmlns:mongo="http://www.springframework.org/schema/data/mongo"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
                    http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
                    http://www.springframework.org/schema/mvc
                    http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
                    http://www.springframework.org/schema/faces
                    http://www.springframework.org/schema/faces/spring-faces-2.2.xsd
                    http://www.springframework.org/schema/context
                    http://www.springframework.org/schema/context/spring-context-3.1.xsd
                ">  
<!-- Root Context: defines shared resources visible to all other web components -->

(2) servlet上下文(WEB-INF/spring/appServlet)

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans html" target="_blank">xmlns="http://www.springframework.org/schema/mvc"     
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     
xmlns:beans="http://www.springframework.org/schema/beans"     
xmlns:context="http://www.springframework.org/schema/context"     
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-3.0.xsd     
http://www.springframework.org/schema/context     
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />

<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />

<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="/WEB-INF/views/" />
    <beans:property name="suffix" value=".jsp" />
</beans:bean>

<context:component-scan base-package="org.paradise.sandbox" />

==============================

其余的都是一样的。不幸的是,当我启动服务器并打开localhost:8080/hellostring/hellostring时,我得到了以下错误:

SEVERE:Servlet.service()用于servlet[DispatcherServlet]在路径[/HelloSpring]的上下文中引发异常[圆形视图路径[helloSpring]:将再次调度回当前处理程序URL[/HelloSpring/helloSpring]。检查您的ViewResolver设置!(提示:这可能是由于默认视图名称生成而导致的未指定视图的结果。)]与根本原因javax.servlet.ServletException:圆形视图路径[helloSpring]:将再次调度回当前处理程序URL[/HelloSpring/helloSpring]。检查您的ViewResolver设置!(提示:这可能是由于默认视图名称生成而导致的未指定视图。)在ervlet.java:882InternalResourceVorg.springframework.web.servlet.渲染(InternalResourceVervlet.do)在ervlet.java:778InternalResourceVjavax.servlet.http.MergedOutputModel(InternalResourceVervlet.service)在ervlet.java:621AbstractVjavax.servlet.http.(AbstractVervlet.service)在ervlet.java:722DispatcherSorg.apache.catalina.core.(DispatcherServlet.java:1180)在org.springframework.web.servlet.DispatcherServlet.do调度(DispatcherServlet.java:950)在org.springframework.web.servlet.DispatcherServlet.do服务(DispatcherServlet.java:852)在org.springframework.web.servlet.FrameworkServlet.process请求(FrameworkSorg.springframework.web.servlet.view.)在iew.prepareFrameworkSiew.java:292获取(FrameworkSorg.springframework.web.servlet.view.)在iew.renderHttpSiew.java:214(HttpSorg.springframework.web.servlet.view.)在iew.renderHttpSiew.java:262(HttpSorg.springframework.web.servlet.)在ervlet.renderApplication ationFilterChain. interalDoFilter(Application ationFilterChain. java: 305)在org. apache. catalina. core。

共有1个答案

陈文景
2023-03-14

它不起作用,因为您的InternalViewResolver正在寻找helloSpring.jsp文件下"/WEB-INF/view/",而您拥有的文件是helloSpring.xhtml.

您可以将后缀更改为值“. xhtml”或使用. jsp视图文件。

 类似资料:
  • 我需要用新顶点更新我的网格。我这样创建VBO(最初创建时只有一个顶点): 然后我要更新VBO缓冲区,并将新顶点写入其中。请注意,我创建VBO是为了给我的新顶点留有足够的空间,并且我控制它不会被过度填充。我还控制每个渲染调用绘制多少元素,因此我不会绘制空的0/0/0顶点。 我的问题是,这段代码可以工作: 因此,当我传递整个顶点数组,从头开始重新分配VBO内存时,它就会提取出我所需要的内容。但是我希望

  • 我的gradle构建: 处理器不在单独的模块中。 处理器不做任何事情,在< code>#process中,它只是抛出,看看它是否在工作。 但绝对没有发生任何事情。没有错误,什么都没有。我怎样才能使它工作?

  • 一切工作正常,正如预期的那样,但是当我添加@Builder注释时: 在生成过程中,我得到以下错误: 这是龙目虫还是我做错了什么?

  • 问题内容: 我有以下课程: :和: :但是当我用: :我收到错误消息: :有人能对此有所启发吗? 问题答案: 从那以后我就知道了。您需要先运行: java -DoutputDirectory =。-cp。; activejdbc-instrumentation.jar; javassist.jar; activejdbc.jar; activejdbc.instrumentation.Main

  • 我现在正在尝试复制一个名为的数据库。在MySQL命令行客户机中,我正在执行我得到错误消息: 说吧,告诉我我很蠢。我只是需要一些帮助,拜托。