“Spring Serve Robots.txt” Kod odpowiedzi

Spring Serve Robots.txt

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

Spring Serve 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

Odpowiedzi podobne do “Spring Serve Robots.txt”

Pytania podobne do “Spring Serve Robots.txt”

Więcej pokrewnych odpowiedzi na “Spring Serve Robots.txt” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu