반응형
1. 첫번째 방법
servlet-context.xml 에 설정하기
<resources mapping="/resources/**" location="/resources/" />
또는
반응형
2. 두 번째 방법
jsp 파일 안에 <head> </head> 사이에 입력
<link href="${pageContext.request.contextPath}/resources/others/other.css" rel="stylesheet">
3. 세번째 방법
실제 css 파일 / img 파일 상대경로 ../ 상위폴더
* background image 경로 설정 주의
@charset "utf-8";
.text_non_deco {
text-decoration : none;
}
.text_color {
color : black;
}
.text_align_center {
text-align : center;
}
body {
background-size: 100%;
background-image: url("../image/background.png");
}
반응형
'Framework' 카테고리의 다른 글
Spring(MVC)과 SpringBoot의 차이 (0) | 2021.04.26 |
---|---|
Spring project 프로젝트 파일 위치 변경하고 싶을때 (0) | 2021.01.14 |
DAY1.05 어노테이션 기반 설정 (0) | 2020.12.14 |
스프링 컨테이너 및 설정 파일 (0) | 2020.12.14 |
결합도(Coupling)가 높은 프로그램 (0) | 2020.12.13 |