“Spring Serrest Robots.txt” Respostas de código

Spring Serrest Robots.txt

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests()
            .antMatchers("/robots.txt").permitAll()
    }
vmxes

Spring Serrest Robots.txt


@RequestMapping(value = "/robots.txt")
public void robots(HttpServletRequest request, HttpServletResponse response) {
    try {
        response.getWriter().write("User-agent: *\nDisallow: /\n");
    } catch (IOException e) {
        CustomLogger.info(TAG, "robots", "robots(): "+e.getMessage());
    }
}

Breakable Batfish

Respostas semelhantes a “Spring Serrest Robots.txt”

Perguntas semelhantes a “Spring Serrest Robots.txt”

Mais respostas relacionadas para “Spring Serrest Robots.txt” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código