프로필 prd -> local 변경

ubi report 테스트 환경 시작
dev
박성영 4 months ago
parent 5c72f37b8b
commit 88ad23ce9a

1
.gitignore vendored

@ -31,3 +31,4 @@ replay_pid*
/.idea/ /.idea/
/.fastRequest/ /.fastRequest/
/.claude/settings.local.json /.claude/settings.local.json
/UbiService/logs/

@ -45,6 +45,10 @@ public class EgovConfigWeb implements WebMvcConfigurer, ApplicationContextAware
registry.addResourceHandler("/font/**") registry.addResourceHandler("/font/**")
.addResourceLocations("/resources/font/") .addResourceLocations("/resources/font/")
.setCacheControl(CacheControl.noCache().mustRevalidate()); .setCacheControl(CacheControl.noCache().mustRevalidate());
// UbiReport4 리포트 뷰어 관련 리소스 처리
registry.addResourceHandler("/ubi4/**")
.addResourceLocations("/ubi4/")
.setCacheControl(CacheControl.noCache().mustRevalidate());
} }
/** /**

@ -19,7 +19,7 @@ spring:
max-request-size: 50MB max-request-size: 50MB
resolve-lazily: false # 즉시 처리하여 빠른 에러 응답 resolve-lazily: false # 즉시 처리하여 빠른 에러 응답
profiles: profiles:
active: prd active: local
application: application:
name: xit-framework name: xit-framework
mvc: mvc:
@ -109,6 +109,7 @@ query-executor:
# Interceptor configuration # Interceptor configuration
interceptor: interceptor:
interceptorExclude: interceptorExclude:
- /** #리포트 테스트를 위해
- /login/** #로그인 - /login/** #로그인
- / #루트 페이지 - / #루트 페이지
- /.well-known/** #개발 툴 - /.well-known/** #개발 툴

Loading…
Cancel
Save