아래와 같이 CSS에 리소스를 찾도록 하면 제대로 찾지 못하고 해당 경로에서 경로를 추가하여 탐색을 하는데 그 때문에 제대로 찾지 못한다.
<link rel="stylesheet" href="resources/stylesheets/style_welcome.css" type="text/css">
그럴때는 ${pageContext.request.contextPath} 를 추가하면 완전히 해결된다.
<link rel="stylesheet" href="${pageContext.request.contextPath}/resources/stylesheets/style_welcome.css" type="text/css">
'Development > Web & Server' 카테고리의 다른 글
[Spring Framework] AWS EC2에 설치되어 있는 MongoDB 원격 연결하기 (0) | 2014.03.24 |
---|---|
[Hibernate] Embedded 사용하기 (0) | 2014.03.24 |
[Spring Framework] property 파일 여러개를 로딩하기 (0) | 2014.03.20 |
[Hibernate] Criteria로 List를 가져올때 중복되는 값이 있다면... (0) | 2014.03.15 |
[Spring Framework] Email 발송하기~! (0) | 2014.03.11 |