有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Spring RestController注释未捕获请求

我不明白为什么要使用RestController注释将类声明为服务,如下所示:

@RestController("/registration")
public class RegistrationService {

    @RequestMapping(value="/", 
                produces="application/json")
    public String initializeSession(Model model){

        return "{\"success\":1}";
    }
}

当我提出这样的要求时

http://localhost:8080/SpringRest/registration/

我得到404状态,在控制台中:

No mapping found for HTTP request with URI [/SpringRest/registration/] in DispatcherServlet with name 'dispatcherServlet'

如果我改变一切@RestController("/registration")

@Controller @RequestMapping("/registration")

并在方法声明上方添加@ResponseBody

这是我的配置:

网络。xml

<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns="http://java.sun.com/xml/ns/javaee"
     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
     id="WebApp_ID" version="2.5">

<display-name>SpringRest</display-name>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/application-config.xml</param-value>
</context-param>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>


<!--
    - Servlet that dispatches request to registered handlers (Controller implementations).
-->
<servlet>
    <servlet-name>dispatcherServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/mvc-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

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

</web-app>

调度员

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


    <mvc:annotation-driven />

    <!-- Uncomment and your base-package here: -->
         <context:component-scan
            base-package="it.reply.rest"/> 

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <!-- Example: a logical view name of 'showMessage' is mapped to '/WEB-INF/jsp/showMessage.jsp' -->
            <property name="prefix" value="/WEB-INF/view/"/>
            <property name="suffix" value=".jsp"/>
    </bean>

</beans>

共 (3) 个答案

  1. # 1 楼答案

    {}的声明如下所示:

        @Target(value=TYPE)
        @Retention(value=RUNTIME)
        @Documented
        @Controller
        @ResponseBody
        public @interface RestController
    

    它包括@Controller@ResponseBody,但不包括@RequestMapping。所以你需要添加它。因此,以下措施将起作用:

    @RestController
    @RequestMapping("/registration")
    
  2. # 2 楼答案

    正确的用法是:

    @RestController
    @RequestMapping("/registration")
    

    @RestControllervalue是组件名

    RestController (Spring Framework 4.3.9.RELEASE API)

    public abstract String value

    The value may indicate a suggestion for a logical component name, to be turned into a Spring bean in case of an autodetected component.

  3. # 3 楼答案

    @RestController不包括url映射,所以您需要@Requestmapping以及

    @RestController
    @RequestMapping("/registration")