feat : 신고 답변 생성 완료. todo: test
parent
f91b1c021e
commit
ef17b3bbf9
@ -1,7 +0,0 @@
|
||||
package com.worker.domain.repo.ep;
|
||||
|
||||
import com.worker.domain.entity.CpCancel;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
public interface EpAnserRepository extends JpaRepository<CpCancel, Integer> {
|
||||
}
|
||||
@ -0,0 +1,49 @@
|
||||
server:
|
||||
port: 8011
|
||||
|
||||
spring:
|
||||
datasource:
|
||||
# 122번 서버 보면 클린파킹 많은데 cp1이 최신임. cp1기준으로 작업.
|
||||
cp:
|
||||
url: jdbc:mariadb://211.119.124.122:53306/demon_test_cp?useUnicode=true&characterEncoding=utf8
|
||||
username: root
|
||||
password: xit5811807
|
||||
driver-class-name: org.mariadb.jdbc.Driver
|
||||
ep:
|
||||
url: jdbc:mariadb://211.119.124.122:53306/demon_test_ep?useUnicode=true&characterEncoding=utf8
|
||||
username: root
|
||||
password: xit5811807
|
||||
driver-class-name: org.mariadb.jdbc.Driver
|
||||
|
||||
# 이미 운영되고있는 서버들 많고 디비 구성 변경시 영향도 파악 어려움.
|
||||
# ddl은 무조건 수동으로 해줄것.
|
||||
# jpa는 순수 개발편의를 위한 사용.
|
||||
# 연관관계 지정하지말고 그대로 쓸것.
|
||||
jpa:
|
||||
show-sql: false
|
||||
hibernate:
|
||||
ddl-auto: none
|
||||
properties:
|
||||
hibernate:
|
||||
format_sql: true
|
||||
dialect: org.hibernate.dialect.MySQLDialect
|
||||
|
||||
esb:
|
||||
info:
|
||||
cp:
|
||||
codeName: WORKER
|
||||
groupCode: INFO
|
||||
detailCode: DEV
|
||||
ep:
|
||||
codeName: WORKER
|
||||
groupCode: INFO
|
||||
detailCode: DEV
|
||||
|
||||
logging:
|
||||
level:
|
||||
root: info
|
||||
org.springframework.scheduling: info
|
||||
org.springframework.scheduling.support: info
|
||||
org.hibernate.SQL: debug
|
||||
org.hibernate.type: trace
|
||||
org.springframework.data.redis: info
|
||||
@ -1,13 +1,13 @@
|
||||
package com.worker;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class CleanParkingWorkerApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
//package com.worker;
|
||||
//
|
||||
//import org.junit.jupiter.api.Test;
|
||||
//import org.springframework.boot.test.context.SpringBootTest;
|
||||
//
|
||||
//@SpringBootTest
|
||||
//class CleanParkingWorkerApplicationTests {
|
||||
//
|
||||
// @Test
|
||||
// void contextLoads() {
|
||||
// }
|
||||
//
|
||||
//}
|
||||
|
||||
Loading…
Reference in New Issue