Just like Spring MVC when we used deploy the application in the servlet container it is used to pickup the project name as servlet context and then as per our servlet mapping the container will process the request.
Here my question is i created spring-boot rest application having crud operations and deployed in tomcat server. But when i try to access any url like [http://localhost:8080/findAllRecords] then the server return 404 error request url not found but i add extra / in the url[http://localhost:8080//findAllRecords] it successfully execute the request.
In my application properties having only jdbc connection properties. – user3286239 Apr 23 '16 at 06:16
server.port = 8080
server.contextPath = /contectPath
http://stackoverflow.com/a/35294685/3286239(This post help to sort out my problem)...... – user3286239 Apr 23 '16 at 20:06