I have a problem to log any existing endpoint in spring boot application. This is my simple project with one rest endpoint. When i run the application in console i cannot see any logs about mappings. In older spring boot version, spring always logs automatically all existing mappings in project. What I should configure to make spring boot log my endpoint mapping like below:
2019-08-05 18:22:15.317 TRACE 11435 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
This is the repository to my example project https://bitbucket.org/powrseba/spring-boot-example/src/singleModule/