无法使用XML配置运行spring应用程序

时间:2013-12-24 11:43:52

标签: spring spring-mvc

我是Spring的新手,尝试通过XML配置运行Spring应用程序,但我没有在控制台中收到任何错误。但是应用程序没有运行,我收到404错误。我没有在WEB-INF / lib中添加servlet-api jar。谁能帮帮我吗?提前谢谢。

    package com.raistudies.action;

    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;

    import org.springframework.web.servlet.ModelAndView;
    import org.springframework.web.servlet.mvc.AbstractController;

    public class HelloWorldAction extends AbstractController {

        @Override
        protected ModelAndView handleRequestInternal(HttpServletRequest arg0,
                HttpServletResponse arg1) throws Exception {
            System.out.println(" helloworld... ");
            ModelAndView mav = new ModelAndView();
            mav.setViewName("hello");
            mav.addObject("helloMessage", "Hello World from My First Spring 3 mvc application with xml configuration...");
            return mav;
        }

    }

hello.jsp - WEB-INF / jsp /

<html>
    <head>
        <title>Hello World with spring 3 MVC XML configuration</title>  
    </head>
    <body>
        <h1>Welcome! Spring MVC XML configuration is working well</h1>
        ${helloMessage}
    </body>
</html>

index.jsp - WEB-INF

  <html>
    <head>
        <title>rai studies</title>
    </head>
    <body>
            Welcome...
            <a href="hello"><br>Click here to check the output :-)</a>
    </body>
    </html>

的web.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
        id="WebApp_ID_1" version="3.0">

    <display-name>HWEWS3MVCIEA</display-name>

    <servlet>
        <servlet-name>SpringMVCDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/app-config.xml</param-value>
        </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>SpringMVCDispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

应用-config.xml中

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd">

    <bean name="/hello.htm" class="com.raistudies.action.HelloWorldAction" />

    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
</beans>

WEB-INF / lib下的库

  • 共享记录-1.1.2.jar
  • JS​​TL-1.2.jar
  • 的log4j-1.2.16.jar
  • 弹簧方面-3.2.5.RELEASE.jar
  • 弹簧豆-3.2.5.RELEASE.jar
  • 弹簧上下文3.2.5.RELEASE.jar
  • 弹簧芯3.2.5.RELEASE.jar
  • 弹簧表达-3.2.5.RELEASE.jar
  • 弹簧网络3.2.5.RELEASE.jar
  • 弹簧webmvc-3.2.5.RELEASE.jar

在WEB-INF / supportsLibrary下支持图书馆

  • servlet的API-2.5.jar

1 个答案:

答案 0 :(得分:0)

您对Action的bean定义不正确。您必须使用一些有效名称定义控制器bean,如:

<bean name="helloWorldController" class="com.raistudies.action.HelloWorldAction" />

然后,您需要将url映射定义添加到配置中,以将请求映射到定义的控制器。

<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
        <props>
            <prop key="/hello.htm">helloWorldController</prop>
        </props>
    </property>
</bean>