티스토리 뷰
Spring/Spring Basic
Spring : Web MVC with XML Configuration - Static 파일 사용하기
Korean Eagle 2020. 4. 22. 23:00728x90
0. Java Config 클래스를 사용하는 설정은 아래 링크를 참조한다.
1. web.xml의 dispatcherServlet 세팅에 사용된 Spring MVC config 파일에 설정을 추가한다.
1-0 xml은 기본적으로 디버깅이 짜증나므로 웬만하면 아래 소스의 beans 테그까지는 복사하는 게 좋다.
1-1 기본적으로 static파일을 web루트 /resources 폴더 아래에 저장하는 것을 가정한다.
1-2 아래처럼 mvc:resources 테그를 이용하여 경로를 지정할 수 있다.
1-3 중요한 부분은 '/' 부분인데 location의 경로인 resources 뒤에 / 가 반드시 있어야 한다.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<mvc:resources location="/resources/" mapping="/resources/**"></mvc:resources>
<!-- Step 3: Add support for component scanning -->
<context:component-scan base-package="pe.pilseong.springmvc" />
<!-- Step 4: Add support for conversion, formatting and validation support -->
<mvc:annotation-driven/>
<!-- Step 5: Define Spring MVC view resolver -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/view/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
1-4 추가한 리소스를 jsp에서 사용하는 방법은 ${pageContext.request.contextPath}를 사용하여 접근할 수 있다.
1-5 pageContext.request.contextPath는 어디서든 root 디렉토리로 접근할 수 있는 값을 제공한다.
<img src="${pageContext.request.contextPath}/resources/images/spring-logo.png">
728x90
'Spring > Spring Basic' 카테고리의 다른 글
Spring : JSP with bootstrap template - 부트스트랩을 사용하는 JSP 껍데기 (0) | 2020.04.23 |
---|---|
Spring : Web MVC - @RequestMapping (0) | 2020.04.22 |
Spring : Web MVC - Request parameter 받기 (0) | 2020.04.22 |
Spring : Web MVC with XML configuration (0) | 2020.04.22 |
Spring : Configuration with Java Config Class - 설정 및 외부 properties 에서 읽어오기 (0) | 2020.04.22 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- Spring
- Angular
- WebMvc
- login
- Many-To-Many
- Rest
- Spring Security
- XML
- 설정
- one-to-one
- jsp
- mapping
- one-to-many
- 매핑
- 스프링부트
- form
- 설정하기
- MYSQL
- 외부파일
- 자바
- 하이버네이트
- RestTemplate
- spring boot
- Validation
- 상속
- 로그인
- 스프링
- hibernate
- Security
- crud
250x250