Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. Jul 24, 2017 12:01:55 AM org.springframework.web.servlet.PageNotFound
  2. noHandlerFound
  3. WARNING: No mapping found for HTTP request with URI [/user/api/users] in
  4. DispatcherServlet with name 'dispatcher'
  5.  
  6. <build>
  7. <plugins>
  8. <plugin>
  9. <groupId>org.apache.maven.plugins</groupId>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.6.1</version>
  12. <configuration>
  13. <source>1.8</source>
  14. <target>1.8</target>
  15. </configuration>
  16. </plugin>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-war-plugin</artifactId>
  20. <version>3.1.0</version>
  21. <configuration>
  22. <failOnMissingWebXml>false</failOnMissingWebXml>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-context</artifactId>
  31. <version>4.3.6.RELEASE</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-webmvc</artifactId>
  36. <version>4.3.6.RELEASE</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.servlet</groupId>
  40. <artifactId>javax.servlet-api</artifactId>
  41. <version>3.0.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.fasterxml.jackson.core</groupId>
  45. <artifactId>jackson-databind</artifactId>
  46. <version>2.8.6</version>
  47. </dependency>
  48. </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement