Skip to content

Commit 011424b

Browse files
authored
Merge pull request #244 from Dokyeongyun/ft-220511-multiModuleProject
Ft 220511 multi module project
2 parents 6df0908 + 998598e commit 011424b

File tree

102 files changed

+853
-994
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+853
-994
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@
1515
/.gradle/
1616

1717
/build/
18+
19+
.vscode/

.project

Lines changed: 0 additions & 17 deletions
This file was deleted.

Common/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/build/
2+
/bin/

Common/build.gradle

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
repositories {
6+
mavenCentral()
7+
}
8+
9+
dependencies {
10+
11+
// Apache commons pool2
12+
implementation 'commons-io:commons-io:2.8.0'
13+
implementation 'org.apache.commons:commons-pool2:2.11.1'
14+
15+
// Jsch
16+
implementation 'com.jcraft:jsch:0.1.55'
17+
18+
// Logback
19+
implementation 'ch.qos.logback:logback-classic:1.2.3'
20+
}

DBMonitoringWindowApp/src/main/java/root/core/domain/JdbcConnectionInfo.java renamed to Common/src/main/java/root/common/database/implement/JdbcConnectionInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package root.core.domain;
1+
package root.common.database.implement;
22

33
import lombok.Data;
44
import lombok.NoArgsConstructor;
@@ -31,7 +31,7 @@ public JdbcConnectionInfo(String jdbcDriver, String jdbcUrl, String jdbcId, Stri
3131
this.jdbcValidation = jdbcValidation;
3232
this.jdbcConnections = jdbcConnections;
3333

34-
// TODO 선택된 Oracle Driver Type에 따라서, Driver 값 변경하기, 현재는 임시로 모두 동일한 값 입력
34+
// TODO ���õ� Oracle Driver Type�� ����, Driver �� �����ϱ�, ����� �ӽ÷� ��� ������ �� �Է�
3535
this.jdbcOracleDriver = "oracle.jdbc.driver.OracleDriver";
3636
}
3737

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66

77
import lombok.Data;
88
import root.common.database.contracts.AbstractDatabase;
9-
import root.core.domain.JdbcConnectionInfo;
109

11-
// TODO Builder Pattern 적용하기
10+
// TODO Builder Pattern �����ϱ�
1211
/**
13-
* Jdbc Driver를 이용해 DBMS와 연결을 수행하는 Class
12+
* Jdbc Driver�� �̿��� DBMS�� ������ �����ϴ� Class
1413
*
1514
* @author DKY
1615
*
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import lombok.extern.slf4j.Slf4j;
1010
import root.common.database.contracts.AbstractDatabaseConnectionPool;
11-
import root.core.domain.JdbcConnectionInfo;
1211

1312
@Slf4j
1413
public class JdbcDatabaseConnectionPool implements AbstractDatabaseConnectionPool {

DBMonitoringWindowApp/src/main/java/root/core/domain/AlertLogCommand.java renamed to Common/src/main/java/root/common/server/implement/AlertLogCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package root.core.domain;
1+
package root.common.server.implement;
22

33
import lombok.Data;
44
import lombok.NoArgsConstructor;

0 commit comments

Comments
 (0)