3

我在 Netbeans 8.0.2 中有标准的 Spring 4.x 文件。RegisterController.java我在controllers-package中添加了一个控制器。我还添加了一个模型 a User,其中包含有关用户的一些基本信息。接下来我制作了 2 个.jsp文件,Registration.jsp并且RegistrationSuccess.jsp.

这是我的RegisterController

@Controller
@RequestMapping(value="/register")
public class RegisterController {
    @RequestMapping(method=RequestMethod.GET)
    public String viewRegistration(Model model){
        User user = new User();
        model.addAttribute("userForm", user);

        List<String> professionList = new ArrayList<>();
        professionList.add("Developer");
        professionList.add("Designer");
        professionList.add("IT Manager");
        model.addAttribute("professionList", professionList);

        return "Registration";
    }

    @RequestMapping(method=RequestMethod.POST)
    public String processRegistration(@ModelAttribute("userForm") User user, Map<String, Object> Model){
        System.out.println("username: " + user.getUsername());
        System.out.println("password: " + user.getPassword());
        System.out.println("email: " + user.getEmail());
        System.out.println("birth date: " + user.getBirthDate());
        System.out.println("profession: " + user.getProfession());

        return "RegistrationSuccess";
    }
}

现在,myProject/register结果是 404。我很困惑 Spring 如何管理路由。有一个web.xml看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.htm</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>redirect.jsp</welcome-file>
    </welcome-file-list>
</web-app>

认为这意味着每个 url*.htm都进入dispatcher-servlet

<?xml version='1.0' encoding='UTF-8' ?>
<!-- was: <?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:p="http://www.springframework.org/schema/p"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">

    <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

    <!--
    Most controllers will use the ControllerClassNameHandlerMapping above, but
    for the index controller we are using ParameterizableViewController, so we must
    define an explicit mapping for it.
    -->
    <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="index.htm">indexController</prop>
            </props>
        </property>
    </bean>

    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/jsp/"
          p:suffix=".jsp" />

    <!--
    The index controller.
    -->
    <bean name="indexController"
          class="org.springframework.web.servlet.mvc.ParameterizableViewController"
          p:viewName="index" />

</beans>

但是我需要在哪里插入一些条目才能让我的 RegisterController 工作?

4

3 回答 3

3

由于您在 url 模式中提供了 *.htm,因此 dispatcher-servlet 将仅识别 *.htm 请求。更改您的 web.xml

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

在你的控制器之上,没有必要给RequestMapping. 您的方法将为您完成工作

@Controller
public class RegisterController {

在你的方法之上,你应该给出价值,以便你的方法可以找到它

@RequestMapping(value="/register.htm" method=RequestMethod.GET)
public String viewRegistration(Model model)
于 2015-06-02T19:38:40.937 回答
0

根据 Dispatcher Servlet 映射,您的 RequestMapping 将使用带有 .htm 扩展名的 HttpRequest 转到控制器。在您的情况下,您提到了 *.htm

<servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.htm</url-pattern>
</servlet-mapping>

所以在控制器中,对于适当的请求,像这样添加..

@RequestMapping(value="/register.htm" method=RequestMethod.GET)
    public String viewRegistration(Model model){

并在控制器的顶部,像这样添加,

@Controller
@RequestMapping("/")
public class RegisterController {

在 spring.xml 中添加这个,

<context:component-scan base-package="RegisterController" />

包括控制器的包名应该在组件扫描基础包中......

于 2015-06-02T19:23:41.253 回答
0

将您的 servlet 映射编辑web.xml为:

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

并在你的 spring 配置文件中添加以下代码:

<mvc:annotation-driven></mvc:annotation-driven>
<context:component-scan base-package="your.packagename.RegisterController"></context:component-scan>
于 2015-06-02T19:41:55.657 回答