Это мой код spring-servlet.xml
<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:p="http://www.springframework.org/schema/p" 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/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"> <context:component-scan base-package="com.devlan.userportal" /> </beans>
Мой web.xml
<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> <context-param> <param-name>contextConfigLocation</param-name> <param-value> /WEB-INF/spring-servlet.xml </param-value> </context-param> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener>
А мой контроллер
@CrossOrigin(origins = "*", maxAge = 3600) @RestController @RequestMapping({"/users"}) public class UserController { @Autowired private UserService userService; @GetMapping(path = {"/{id}"}) public User findOne(@PathVariable("id") int id){ return userService.findById(id); }
Ноздесь всегда отображается сообщение
[WARNING ] No mapping found for HTTP request with URI [/MyProject/users/1] in DispatcherServlet with name 'spring'
Я дал тег для проверки контекста в spring-servlet.xml
Я что-то пропустил?Любые идеи будут с благодарностью.