Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b7a4a108d | |||
| 9b9bcb5be4 | |||
| 93f7c210bc | |||
| bb79b55f08 | |||
| 23bd0c1207 | |||
| 28a9ff1a7f | |||
| 045f354e5c | |||
| 4f577c8c14 | |||
| cc4c1a6b53 | |||
| 551a2da717 | |||
| 1c57d348e6 |
@@ -254,7 +254,8 @@ CREATE TABLE DVPOWN.PT_MESSAGE_RECIPIENT
|
|||||||
)
|
)
|
||||||
;
|
;
|
||||||
|
|
||||||
create table DVPOWN.PT_TOKEN
|
create table PT_TOKEN
|
||||||
|
(
|
||||||
(
|
(
|
||||||
TOKEN VARCHAR2(255) not null
|
TOKEN VARCHAR2(255) not null
|
||||||
primary key,
|
primary key,
|
||||||
|
|||||||
@@ -22,6 +22,10 @@ public class PortalApplication extends SpringBootServletInitializer {
|
|||||||
|
|
||||||
private static final Logger portal_logger = LoggerFactory.getLogger(PortalApplication.class);
|
private static final Logger portal_logger = LoggerFactory.getLogger(PortalApplication.class);
|
||||||
|
|
||||||
|
public PortalApplication() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
portal_logger.info("##### PortalApplication Start #####");
|
portal_logger.info("##### PortalApplication Start #####");
|
||||||
|
|||||||
@@ -85,9 +85,9 @@ public class BaseDatasourceConfiguration {
|
|||||||
persistenceUnit = "gateway";
|
persistenceUnit = "gateway";
|
||||||
}
|
}
|
||||||
|
|
||||||
// 개발 환경용
|
// 개발 환경용 - local 프로파일에서는 스키마 검증(ddl-auto) 해제
|
||||||
if (env.matchesProfiles("local")) {
|
if (env.matchesProfiles("local")) {
|
||||||
properties.put("hibernate.hbm2ddl.auto", "validate");
|
properties.put("hibernate.hbm2ddl.auto", "none");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,8 @@ spring:
|
|||||||
default-page-size: '10'
|
default-page-size: '10'
|
||||||
jpa:
|
jpa:
|
||||||
open-in-view: false
|
open-in-view: false
|
||||||
|
hibernate:
|
||||||
|
ddl-auto: none
|
||||||
|
|
||||||
web:
|
web:
|
||||||
resources:
|
resources:
|
||||||
|
|||||||
@@ -150,7 +150,7 @@
|
|||||||
<th:block layout:fragment="contentScript">
|
<th:block layout:fragment="contentScript">
|
||||||
<script th:inline="javascript">
|
<script th:inline="javascript">
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
var successMsg = [[${success}]];
|
var successMsg = [[${ success }]];
|
||||||
if (successMsg) {
|
if (successMsg) {
|
||||||
customPopups.showAlert(successMsg);
|
customPopups.showAlert(successMsg);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user