spring mvc 404错误在我的项目中

时间:2015-05-25 16:59:11

标签: spring spring-mvc

我是MVC新手。我已经能够做几个例子的教程没有问题。我打算将这个项目.war文件发送给潜在的雇主。他不耐烦地等待着。

尝试运行http://localhost:8080/ProductStore/index

时出现404错误

我的项目目录结构如下:

ProductStore   SRC / JAVA /主      com.productstore.dao          ProductsDoa.java      com.productstore.controller          Productscontroler.java      com.productstore.domain          Products.java      com.productstore.service          ProductsService.java
  WEB-INF     JSP
       的index.jsp   为spring-servlet.xml   的web.xml

我完全失去了。

我的配置文件如下: 的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.xsd"
             id="WebApp_ID" version="2.5">
             <display-name>Spring3-Hibernate</display-name>
             <welcome-file-list>
                 <welcome-file>/WEB-INF/jsp/index.jsp</welcome-file>
             </welcome-file-list>
             <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/spring-servlet.xml</param-value>
             </init-param>
             <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
             <servlet-name>spring</servlet-name>
             <url-pattern>/</url-pattern>
         </servlet-mapping>
     </web-app>

spring-servlet.xml

       <?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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:lang="http://www.springframework.org/schema/lang"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
        http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">

    <mvc:annotation-driven />
    <context:annotation-config />
    <context:component-scan base-package="com.productstore" />

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

    <bean id="messageSource"
        class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <property name="basename" value="classpath:messages" />
        <property name="defaultEncoding" value="UTF-8" />
    </bean>
    <bean id="propertyConfigurer"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
        p:location="/WEB-INF/jdbc.properties" />

    <bean id="dataSource"
        class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"
        p:driverClassName="${jdbc.driverClassName}"
        p:url="${jdbc.databaseurl}" p:username="${jdbc.username}"
        p:password="${jdbc.password}" />


    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation">
            <value>classpath:hibernate.cfg.xml</value>
        </property>
        <property name="configurationClass">
            <value>org.hibernate.cfg.AnnotationConfiguration</value>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">${jdbc.dialect}</prop>
                <prop key="hibernate.show_sql">true</prop>
            </props>
        </property>
    </bean>

    <tx:annotation-driven />
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>


</beans>

我的控制器类如下:

 package com.productstore.controller;

    package com.productstore.controller;

import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import com.productstore.domain.Products;
import com.productstore.service.ProductsService;

@Controller 
public class ProductsController {

     @Autowired
        private ProductsService productsService;


     @RequestMapping(value = "/index", method = RequestMethod.GET)
     public String listProducts (Map<String, Object> map) {

         System.out.println("index");

            map.put("products", new Products());
            map.put("productsList", productsService.listProducts());

            return "index";
     }     

     @RequestMapping(value = "/add", method = RequestMethod.POST)
        public String addProducts(@ModelAttribute("products")
        Products products, BindingResult result) {

            productsService.addProducts(products);

            return "redirect:/index";
        }

        @RequestMapping("/delete/{Id}")
        public String deleteProducts(@PathVariable("Id")
        Integer Id) {

            productsService.removeProducts(Id);

            return "redirect:/index";
        }
}       

2 个答案:

答案 0 :(得分:0)

如果您的应用程序启动没有错误,则问题可能出在您的servlet映射中。

您将其映射为:

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

表示映射到根上下文。尝试将其更改为以下

<servlet-mapping>
    <servlet-name>spring</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

答案 1 :(得分:0)

确保您是否在servlet-context.xml文件中输入了组件扫描。

<context:component-scan base-package="com.productstore.service.*" />

如果你仍然面临这个问题,请告诉我。