Sangil's blog

https://github.com/ChoiSangIl Admin

spring boot google ads.txt 설정하기 DEV / WEB

2019-11-06 posted by sang12


언젠가부터 구글 애널리틱스를 들어가면 ads.txt를 설정하란 메세지가 나오는 걸 볼 수 있습니다. 수익에 심각한 영향을 줄 수 있다고 협박하면서 말이죠.
수익 손실 위험 - 수익에 심각한 영향을 미치지 않도록 사이트에서 발견된 ads.txt 파일 문제를 해결해야 합니다.
그래서 귀찮음을 무릅쓰고 오랜만에 블로그를 업데이트 했습니다. ads.txt에 관한 자세한 설명은 https://support.google.com/adsense/answer/7532444?hl=ko 이곳을 참조하세요. 해당 포스팅 에서는 Spring boot에서 ads.txt를 받을 수 있는 방법을 알아 보겠습니다. spring boot에서 txt파일로 다운로드 받을려면 response header에 설정을 해주면 됩니다.

@RequestMapping(value = "/ads.txt")
@ResponseBody
public String adstxt(HttpServletResponse response) {
     String fileName = "ads.txt";
     response.setHeader("Content-Disposition", "attachment; filename=" + fileName);
     String content = "google.com, pub-2918447982815807, DIRECT, f08c47fec0942fa0";
     return content;
}
위와 같이 설정해주고 http://도메인주소/ads.txt로 접속하면 ads.txt 형식의 파일을 다운로드 할 수 있습니다.
#spring boot txt파일 다운로드 #spring boot txt #spring boot ads.txt #ads.txt #spring ads.txt 설정 #ads.txt설정
REPLY