본문 바로가기
Java & Spring

localhost:8080/ 로 접근했는데. 수상한 url로 가는 경우.

by 모닝위즈 2024. 5. 10.
반응형

로컬 서버 구성 후 

 

1. 설치된 Tomcat 경로의 web.xml 파일 내부 

<welcome-file-list>
   <welcome-file>index.html</welcome-file>
   <welcome-file>index.htm</welcome-file>
   <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

 

2. 크롬, 엣지 등 브라우저의 캐시.

  > 앞전 localhost:8080 프로젝트의 캐시가 남아있는 경우.

 

3. mvc config 설정

/** 
 * Add Index Page
 */
@Override
public void addViewControllers(ViewControllerRegistry registry) {
    registry.addViewController("/").setViewName("forward:/index.jsp");
}

 

 

4. 인터셉터 리다이렉션 등

  

 

 

 

위 4가지가 대표적인 원인. 

 

생각보다 브라우저 캐시의 경우를 생각하지 않은 사람들을 봄.

 

 

이 캐시가 아닌데

댓글