목록db2 (2)
투케이2K
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [application.yml 접속 정보 작성] spring: # [profiles : 배포 시 설정 이름 : spring 내 설정] profiles: active: prod # [devtools : spring 내 설정] devtools: livereload: enabled: true # [datasource : spring 내 설정] # [url : port 및 servername 작성] # [username : 스키마 명칭] # [password : 비밀 번호] datasource: driver-class-name: com.ibm.db2.jcc.DB2Driver jdbc-url: jdbc:db2://162.28.10.10..
[개발 환경 설정] 개발 툴 : inteli j 개발 언어 : spring [gradle - 소스 코드] plugins { id 'org.springframework.boot' version '2.7.0' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' // TODO [war file create] id 'war' } group = 'com.admin' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' //configurations { // compileOnly { // extendsFrom annotationProcessor // } //} // TODO [war 파일..