1

使用注释会很容易:

@Controller
public class MyController {

  @RequestMapping(value="/hitmycontroller", method= RequestMethod.OPTIONS)
  public static void options(HttpServletRequest req,HttpServletResponse resp){
    //Do options
  }
  @RequestMapping(value="/hitmycontroller", method= RequestMethod.GET)
  public static void get(HttpServletRequest req,HttpServletResponse resp){
    //Do get
  }
}

但我找不到如何在 XML 中执行此操作。是否有一些映射处理程序会执行以下操作:

<bean id="handlerMapping"
  class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
  <property name="mappings">
      <mapping>
        <url>/hitmycontroller</url>
        <httpMethod>GET</httpMethod>
        <method>get</method>
        <controller>MyController</controller>
      </mapping>
      <mapping>
        <url>/hitmycontroller</url>
        <httpMethod>OPTIONS</httpMethod>
        <method>options</method>
        <controller>MyController</controller>
      </mapping>
  </property>
</bean>

任何指针将不胜感激。

4

2 回答 2

1

使用 SimpleUrlHandlerMapping 是不可能指定 http 方法的。可能您必须使用其他映射,例如 Spring MVC REST 项目 ( http://spring-mvc-rest.sourceforge.net/ ) 中的 MethodUrlHandlerMapping。

使用 MethodUrlHandlerMapping 声明映射的方式应该是这样的:

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
        <props>
            <prop key="GET /hitmycontroller">MyController</prop>
            <prop key="OPTIONS /hitmycontroller">MyController</prop>
        </props>
    </property>
</bean>

您可以在他们的页面中看到示例:

http://spring-mvc-rest.sourceforge.net/introduction.html

看第2部分。

于 2013-07-05T14:15:46.097 回答
0

您的@RequestMapping注释应该可以工作。只需从您的 xml 配置中删除 handlerMapping bean 并启用 MVC 注释。

这是一个示例配置。 将 base-package 更改为包含控制器类的包

<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" xmlns:mvc="http://www.springframework.org/schema/mvc"

    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
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

    <context:component-scan base-package="your.package" />
    <mvc:annotation-driven>
</beans>
于 2013-07-05T14:36:09.537 回答