Spring :: static contents
환경 설정
- static 아래에 hello-static.html 이라는 이름으로 아래와 같이 생성
<!DOCTYPE HTML>
<html>
<head>
<title>static content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
정적 컨텐츠 입니다.
</body>
</html>
실행 결과
- localhost:8080/hello-static.html 결과
index.html
와 이어준 적도 없고 컨트롤러에 정의도 안 했는데,
어떻게 가능한걸까?
동작 방식
- 먼저 hello-static 이라는 이름을 가진 컨트롤러를 찾는다.
- 존재하지 않을 시 static 파일 내부에서 찾는다.
Author And Source
이 문제에 관하여(Spring :: static contents), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@wisepine/Spring-static-contents저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)