This commit is contained in:
Rinjae
2025-11-12 13:53:55 +09:00
parent 535936228b
commit 5ec8fd9919
3 changed files with 7 additions and 20 deletions
@@ -1,15 +0,0 @@
package com.eactive.apim.portal.apps.app.mapper;
import com.eactive.apim.portal.app.entity.ProdClient;
import com.eactive.apim.portal.apps.apiservice.mapper.ApiSpecInfoMapper;
import com.eactive.apim.portal.apps.app.dto.ClientDTO;
import com.eactive.eai.data.mapper.BaseMapperConfig;
import com.eactive.eai.data.mapper.GenericMapper;
import org.mapstruct.Mapper;
@Mapper(config = BaseMapperConfig.class, uses = {ApiSpecInfoMapper.class})
public interface ProdClientMapper extends GenericMapper<ClientDTO, ProdClient> {
}
+4 -4
View File
@@ -19,8 +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 # 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!
@@ -28,8 +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 # 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!
+3 -1
View File
@@ -163,7 +163,9 @@ document.addEventListener('DOMContentLoaded', function() {
const sub = document.getElementById('sub'); const sub = document.getElementById('sub');
// 초기에 서브 메뉴 숨기기 // 초기에 서브 메뉴 숨기기
sub.style.display = 'none'; if (sub == null) {
sub.style.display = 'none';
}
// 마우스가 메인 네비게이션에 진입했을 때 // 마우스가 메인 네비게이션에 진입했을 때
mainNav.addEventListener('mouseenter', function() { mainNav.addEventListener('mouseenter', function() {