# 인코딩 스키마 설정
struts.i18n.encoding=UTF-8

# 값을 지정하면 디폴트가 아닌 object factory를 사용
struts.objecFactory.spring.autoWire = name

# 클래스 인스턴스를 캐시할 것인지 지정(디폴트: ture)
struts.objectFactory.spring.useClassCache = true

# multipart/form-data로 인코딩된 HTTP POST요청을 처리하는 파서 지정.
struts.multipart.parser=jakarta

# 임시디렉토리 지정(디폴트: javax.servlet.context.tempdir)
struts.multipart.saveDir=

# 최대 사이즈 지정
struts.multipart.maxSzie=2097152

# 액션의 확장자 지정.(','로 여러개 지정가능)
struts.action.extension=action

# true: jar의 static 컨텐트를 서비스,  false: 컨택스트패스/struts에서 static 컨텐트 서비스
struts.serve.static=true

# 개발시 static컨텐트를 요청시마다 가져올때
struts.serve.static.browserCache=true

# false면 동적메서드 호출 불가능('dortus.action?method=메서드')
struts.enable.DynamicMethodInvocation=true

# true면 액션이름에 '/'사용가능.
struts.enable.SlashesInActionNames=false

# true면 리소스 번들을 매 요청시마다 reload. 개발시 true, 서비스 false.
struts.i18n.reload=false

# true면 struts.xml이 바뀔때마다 애플리케이션 환경 구성을 reload.
struts.configuration.xml.reload=false

# 기본 리소스 번들 지정.
#struts.custom.i18n.resources=testmessage1,testmessage2

#struts가 자동으로 로드하는 환경설정 파일들
struts.configuration.files=struts-default.xml,struts-plugin.xml,struts.xml

'Program > Java' 카테고리의 다른 글

Annotation (since tiger / 1.5)  (0) 2009.12.15
XML 파싱  (0) 2009.12.15
아파치 미나  (0) 2009.12.15
Triple DES Java  (0) 2009.12.02
알아야 할 용어 정리  (0) 2009.11.30

+ Recent posts