■ servlet-context.xml ( 첨부파일 관련 객체 생성 ) > SPRING1

본문 바로가기
사이트 내 전체검색

SPRING1

■ servlet-context.xml ( 첨부파일 관련 객체 생성 )

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 88회 작성일 24-08-01 10:23

본문

<?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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd

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-4.3.xsd">


<!-- 컨트롤러 @RequestMapping() 경로를 바탕으로 "/WEB-INF/views/매핑 값.jsp"로 보낸다는 구조 -->

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

<property name="prefix" value="/WEB-INF/views/" />

<property name="suffix" value=".jsp" />

</bean>


<!-- 클래스 선언에 에노테이션을 이용해서 컨트롤러를 작성할 수 있다는 선언 --> 

<mvc:annotation-driven></mvc:annotation-driven>


<!-- CSS, JavaScript, image 파일과 같이 고정된 자원들의 위치를 의미 -->

<mvc:resources mapping="/**" location="/resources/" />


<context:component-scan base-package="com.pkt.controller" />


<!-- 첨부파일 -->

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

<property name="maxUploadSize" value="10485760"></property> <!-- 10MB -->

<property name="defaultEncoding" value="utf-8"></property> <!-- 한글 파일명 깨짐 방지 --> 

</bean>


<!-- 첨부파일 저장경로 --> 

<bean id="uploadPath" class="java.lang.String">

<constructor-arg value="C:\\spring_maven\\ex04\\src\\main\\webapp\\resources\\upload"></constructor-arg>

</bean>


</beans>


댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
93
어제
210
최대
10,760
전체
268,095
Copyright © dancePKT . All rights reserved.