fa 폰트 추가, 디버깅 로그 설정파일 추가
This commit is contained in:
+6
-1
@@ -6,4 +6,9 @@
|
|||||||
이메일 인증 기능 비활성화(회원 가입시 이메일 인증은 한걸로 처리)
|
이메일 인증 기능 비활성화(회원 가입시 이메일 인증은 한걸로 처리)
|
||||||
|
|
||||||
### 디비 접속 방법 Direct -> JNDI 로 변경
|
### 디비 접속 방법 Direct -> JNDI 로 변경
|
||||||
- 은행 내부 환경에선 모두 JNDI 사용하기 때문에 서버환경에서 동작하는 profile 내 application.yaml 에서 디비 접속 정보 삭제
|
- 은행 내부 환경에선 모두 JNDI 사용하기 때문에 서버환경에서 동작하는 profile 내 application.yaml 에서 디비 접속 정보 삭제
|
||||||
|
|
||||||
|
## 긴급 로깅이 필요할 경우 JVM 파라미터 추가
|
||||||
|
```
|
||||||
|
-Dlogback.configurationFile=classpath:logback-debug.xml
|
||||||
|
```
|
||||||
@@ -63,6 +63,7 @@ public class PortalConfigWebDispatcherServlet implements WebMvcConfigurer {
|
|||||||
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
public void addResourceHandlers(ResourceHandlerRegistry registry) {
|
||||||
|
|
||||||
registry.addResourceHandler("/css/**").addResourceLocations("/css/", "classpath:/static/css/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
registry.addResourceHandler("/css/**").addResourceLocations("/css/", "classpath:/static/css/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
||||||
|
registry.addResourceHandler("/webfonts/**").addResourceLocations("/webfonts/", "classpath:/static/webfonts/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
||||||
registry.addResourceHandler("/font/**").addResourceLocations("/font/", "classpath:/static/font/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
registry.addResourceHandler("/font/**").addResourceLocations("/font/", "classpath:/static/font/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
||||||
registry.addResourceHandler("/html/**").addResourceLocations("/html/", "classpath:/static/html/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
registry.addResourceHandler("/html/**").addResourceLocations("/html/", "classpath:/static/html/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
||||||
registry.addResourceHandler("/images/**").addResourceLocations("/images/", "classpath:/static/images/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
registry.addResourceHandler("/images/**").addResourceLocations("/images/", "classpath:/static/images/").setCacheControl(CacheControl.maxAge(1, TimeUnit.DAYS)).resourceChain(true).addResolver(new PathResourceResolver());
|
||||||
|
|||||||
@@ -19,7 +19,8 @@ spring:
|
|||||||
|
|
||||||
ems:
|
ems:
|
||||||
datasource:
|
datasource:
|
||||||
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
|
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
|
||||||
|
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/PAPM
|
||||||
driver-class-name: oracle.jdbc.OracleDriver
|
driver-class-name: oracle.jdbc.OracleDriver
|
||||||
username: EMSAPP
|
username: EMSAPP
|
||||||
password: EMSAPP123!
|
password: EMSAPP123!
|
||||||
@@ -27,7 +28,8 @@ ems:
|
|||||||
|
|
||||||
gateway:
|
gateway:
|
||||||
datasource:
|
datasource:
|
||||||
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
|
# jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/DAPM
|
||||||
|
jdbc-url: jdbc:oracle:thin:@//192.168.240.177:1599/PAPM
|
||||||
driver-class-name: oracle.jdbc.OracleDriver
|
driver-class-name: oracle.jdbc.OracleDriver
|
||||||
username: AGWAPP
|
username: AGWAPP
|
||||||
password: AGWAPP123!
|
password: AGWAPP123!
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<configuration scan="true" scanPeriod="5 seconds">
|
||||||
|
<property name="LOG_PATH" value="/Log/App/eapim//${inst.Name:-devSvrUD}"/>
|
||||||
|
|
||||||
|
<appendar name="FILE_DEBUG" class="ch.qos.logback.core.ConsoleAppender">
|
||||||
|
<encoder>
|
||||||
|
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n</pattern>
|
||||||
|
</encoder>
|
||||||
|
</appendar>
|
||||||
|
|
||||||
|
|
||||||
|
<logger name="org.hibernate.engine.jdbc.spi.SqlExceptionHelper" level="DEBUG" additivity="false">
|
||||||
|
<file>${LOG_PATH}/debug.log</file>
|
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||||
|
<fileNamePattern>${LOG_PATH}/backup/debug.%d{yyyy-MM-dd}.log</fileNamePattern>
|
||||||
|
<maxHistory>7</maxHistory>
|
||||||
|
</rollingPolicy>
|
||||||
|
<encoder>
|
||||||
|
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n</pattern>
|
||||||
|
</encoder>
|
||||||
|
</logger>
|
||||||
|
</configuration>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user