1. Spring 정적파일 서비스
2. mvc schema
// 아래 존재하는 mvc 스키마 이름을 사용할 때 "mvc" 로 치환하여 사용하겠다는 의미
xmlns:mvc="http://www.springframework.org/schema/mvc"
// mvc 스키마를 불러옴
http://www.springframework.org/schema/mvc // 스키마 이름
https://www.springframework.org/schema/mvc/spring-mvc.xsd // 실제 스키마
3. mvc:resources 태그
<mvc:resources location="/resource/" mapping="/resource/**"></mvc:resources>
// 보통 static 폴더 내에 정적파일을 저장하고 해당 폴더를 정적파일의 root 디렉토리로 설정
// mvc:resources 태그에서 알아서 정적파일 url 요청을 판단하여 static 에서 찾음
<mvc:resources location="/static/" mapping="/**"></mvc:resources>
4. 웹 프로젝트 디렉토리 구조
<link href="/css/admin/layout.css" type="text/css" rel="stylesheet" />
<img src="/images/logo.png" alt="이미지가 없습니다" />