未在[项目名称] -target类目录中生成Spring MVC的控制器类(Spring mvc c

2019-09-30 15:43发布

我已经创建了一个简单的弹簧MVC Maven项目,但是当我试图在服务器上运行,并要求比任何页面显示我以下错误:


警告:未发现与URI [/spring-mvc3/outerlink.html]在DispatcherServlet的与名称“弹簧”的HTTP请求映射

但后来我发现,我的项目并不产生在弹簧MVC3目标类目录控制器类

这是我的web.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>spring-mvc3</display-name>
<welcome-file-list>index.jsp</welcome-file-list>
    <servlet>
        <servlet-name>spring</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>spring</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>

这是我的春天-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:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
                      http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
                      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="first"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/"/>
<property name="suffix" value=".jsp"></property>
</bean>

</beans>

这是EmpController.java类,这是本SRC /主/ JAVA第一封装内:

package first;

import java.util.List;

import javax.servlet.http.HttpServletRequest;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
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 org.springframework.web.servlet.ModelAndView;

@Controller
public class EmpController {

@RequestMapping("/outerlink")
public ModelAndView doWork(HttpServletRequest request)
{
    System.out.println("Entered in Model");
    return new ModelAndView("empform");
}
}

这是我的项目结构,我的项目名称是弹簧MVC3

请帮助我,我非常坚持了这​​一点,在此先感谢

Answer 1:

我认为你的主要问题是您正在使用的HTML页面,如果您使用的.html页面,然后ModelAndView不能执行。 为此,你需要做的是页面.jsp文件。

如果你想使用的HTML文件,因为它是那么你需要重定向它。 为HTML网页是静态页面,你需要在你的Spring-servlet.xml中如下配置

<mvc:resources mapping="/resources/**" location="/resources/" />

到redrect: return "redirect:resources/htmlPageName"

Spring的XML文件的命名空间应该有Spring MVC的。

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

        <mvc:annotation-driven />
        <context:component-scan base-package="first" />

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

    </beans>

下面放罐和Java版本应该在java 8



文章来源: Spring mvc controller class is not generated in [project-name]-target-classes directory