1

我正在尝试在我的 Web 应用程序中对带注释的控制器使用 Spring 3 MVC 支持。我的配置如下:

1- web.xml:

 <servlet>  
    <servlet-name>dispatcher</servlet-name>  
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>    
</servlet>

<servlet-mapping>  
    <servlet-name>dispatcher</servlet-name>  
    <url-pattern>/springmvc/*</url-pattern>  
</servlet-mapping>

2- applicationContext.xml:我的网页直接在 webapp 文件夹下

    <context:component-scan base-package="com.myapp" />
    <mvc:annotation-driven />
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

3-控制器:

@Controller
@RequestMapping("/test.jsp")
public class Test{

    @RequestMapping(method = RequestMethod.GET)
    public String get() {
        System.out.println("######## GET METHOD FOR test.jsp ########");
        return "test.jsp";
    }

}

注意:我在ServletContextListener中加载applicationContext ,如下所示:

ApplicationContext context = new ClassPathXmlApplicationContext(
                    "classpath:spring/config/applicationContext.xml");

请告知如何解决这个问题,谢谢。

我还有另一个问题,如果可以让调度程序 servlet 调度特定的 jsp 页面,而不是应用程序中的所有页面,因为并非我的所有 jsp 页面都有控制器。

4

3 回答 3

3

web.xml 中的调度程序 servlet 名称是dispatcher. 在这种情况下,Spring 尝试加载 dispatcher-servlet.xml ( servlet_name-servlet.xml)。而您已经在applicationContext.xml. 将其重命名为dispatcher-servlet.xml.

或者你也可以通过在 servlet 中设置 init-param 让 Spring 读取 applicationContext。例如:

<servlet>
    <servlet-name>spring</servlet-name>
    <servlet-class>
        org.springframework.web.servlet.DispatcherServlet
    </servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/applicationContext.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/springmvc/*</url-pattern>
</servlet-mapping>

关于你的第二个问题,你可以使用spring的view-controller映射来直接渲染视图。

<mvc:view-controller path="demo/flot" view-name="demo/flot"/>

阅读:17.15.5 配置视图控制器

于 2012-12-17T08:41:46.453 回答
1

更改return "test.jsp"return test. 您的返回字符串将添加prefixsuffix

于 2012-12-17T08:44:46.450 回答
0

解决如下:

<listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <context-param>
        <param-name>contextConfigLocation</param-name>
            <param-value>
             classpath:spring/config/applicationContext.xml
        </param-value>
    </context-param>


    <servlet>  
        <servlet-name>spring</servlet-name>  
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>    
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring/config/dispatcherServlet.xml</param-value>
       </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>  
        <servlet-name>spring</servlet-name>  
        <url-pattern>/myapp/*</url-pattern>  
    </servlet-mapping>
于 2012-12-25T14:34:24.607 回答