I saw this but it's obsolete. I tried the following:
Created src/main/resources/static/robots.txt
.
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter{
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
// registry.addResourceHandler("/robots.txt").addResourceLocations("classpath:/static/robots.txt");
// registry.addResourceHandler("/robots.txt").addResourceLocations("/static/robots.txt");
// registry.addResourceHandler("/robots.txt").addResourceLocations("/static/");
registry.addResourceHandler("/robots.txt").addResourceLocations("classpath:/static/");
Each time,
$ curl -i http://localhost:8080/robots.txt
HTTP/1.1 302
Set-Cookie: JSESSIONID=D1E5304FE8E693115A1FFB0F76786ABD; Path=/; HttpOnly
Location: http://localhost:8080/pageNotFound
Content-Length: 0
However static CSS works.
$ curl -iq http://localhost:8080/css/style.css | head
HTTP/1.1 200
I killed the server and ran mvn spring-boot:run
each time I changed the code.
It says this when I start the server:
2018-05-03 17:22:18.639 INFO 25148 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/robots.txt] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
...
2018-05-03 17:22:39.139 INFO 25148 --- [nio-8080-exec-1] c.s.shorturl.apis.ShortUrlApiController : Method name: doUrlRequest() request http method is GET
It is executing this instead.
@Controller
@Scope("session")
@ApiIgnore
public class ProjectShortUrlController implements ErrorController{
@RequestMapping(value = "/*")
public void doUrlRequest(HttpServletRequest request, HttpServletResponse response) {
CustomLogger.info(TAG, "rediection: ", "Method name: doUrlRequest() request http method is "+request.getMethod());
Documentation: https://docs.spring.io/spring/docs/5.1.0.BUILD-SNAPSHOT/spring-framework-reference/web.html#mvc-config-static-resources
Spring 4.3.10
I found if I do this
@Configuration
public class WebConfig extends WebMvcConfigurationSupport {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/robots.txt").addResourceLocations("/static/robots.txt");
Then robots.txt
works
$ curl -i http://localhost:8080/robots.txt
HTTP/1.1 200
Content-Type: text/plain
Content-Length: 28
User-agent: *
Disallow: /
But all other URLs start to give "Whitelabel Error Page"!