diff --git a/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/datasource/jeus.vm b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/datasource/jeus.vm new file mode 100644 index 000000000..82bd01021 --- /dev/null +++ b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/datasource/jeus.vm @@ -0,0 +1,16 @@ + + + + + + java.naming.factory.initial=${txtFactoryInitial} + java.naming.provider.url=${txtProviderUrl} + + + + \ No newline at end of file diff --git a/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/dailyRollingFile.vm b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/dailyRollingFile.vm new file mode 100644 index 000000000..191dd3306 --- /dev/null +++ b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/dailyRollingFile.vm @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/egovDb.vm b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/egovDb.vm new file mode 100644 index 000000000..5258e7e6c --- /dev/null +++ b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/egovDb.vm @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/egovJdbc.vm b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/egovJdbc.vm new file mode 100644 index 000000000..864f7ec34 --- /dev/null +++ b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/logging/egovJdbc.vm @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/transaction/datasource.vm b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/transaction/datasource.vm new file mode 100644 index 000000000..758cadb75 --- /dev/null +++ b/egovframework.dev.imp.codegen.template.templates/eGovFrameTemplates/transaction/datasource.vm @@ -0,0 +1,14 @@ + + + + + + + + \ No newline at end of file diff --git a/egovframework.dev.imp.templates/src/test/java/pkg/service/Sample2DefaultVO.java b/egovframework.dev.imp.templates/src/test/java/pkg/service/Sample2DefaultVO.java deleted file mode 100644 index 5722d5afe..000000000 --- a/egovframework.dev.imp.templates/src/test/java/pkg/service/Sample2DefaultVO.java +++ /dev/null @@ -1,125 +0,0 @@ -package pkg.service; - -import java.io.Serializable; - -/** - * Sample2 Default VO class - * - * @author 홍길동 - * @since 실행환경 개발팀 - * @version 1.0 - * @see - * - *
- *  == 개정이력(Modification Information) ==
- *
- *   수정일      수정자           수정내용
- *  -------    --------    ---------------------------
- *   실행환경 개발팀  홍길동          최초 생성
- *
- *      
- */ -public class Sample2DefaultVO implements Serializable { - - private static final long serialVersionUID = 1L; - - /** 검색조건 */ - private String searchCondition = ""; - - /** 검색Keyword */ - private String searchKeyword = ""; - - /** 검색사용여부 */ - private String searchUseYn = ""; - - /** 현재페이지 */ - private int pageIndex = 1; - - /** 페이지갯수 */ - private int pageUnit = 10; - - /** 페이지사이즈 */ - private int pageSize = 10; - - /** firstIndex */ - private int firstIndex = 1; - - /** lastIndex */ - private int lastIndex = 1; - - /** recordCountPerPage */ - private int recordCountPerPage = 10; - - public int getFirstIndex() { - return firstIndex; - } - - public void setFirstIndex(int firstIndex) { - this.firstIndex = firstIndex; - } - - public int getLastIndex() { - return lastIndex; - } - - public void setLastIndex(int lastIndex) { - this.lastIndex = lastIndex; - } - - public int getRecordCountPerPage() { - return recordCountPerPage; - } - - public void setRecordCountPerPage(int recordCountPerPage) { - this.recordCountPerPage = recordCountPerPage; - } - - public String getSearchCondition() { - return searchCondition; - } - - public void setSearchCondition(String searchCondition) { - this.searchCondition = searchCondition; - } - - public String getSearchKeyword() { - return searchKeyword; - } - - public void setSearchKeyword(String searchKeyword) { - this.searchKeyword = searchKeyword; - } - - public String getSearchUseYn() { - return searchUseYn; - } - - public void setSearchUseYn(String searchUseYn) { - this.searchUseYn = searchUseYn; - } - - public int getPageIndex() { - return pageIndex; - } - - public void setPageIndex(int pageIndex) { - this.pageIndex = pageIndex; - } - - public int getPageUnit() { - return pageUnit; - } - - public void setPageUnit(int pageUnit) { - this.pageUnit = pageUnit; - } - - public int getPageSize() { - return pageSize; - } - - public void setPageSize(int pageSize) { - this.pageSize = pageSize; - } - -} diff --git a/egovframework.dev.imp.templates/src/test/java/pkg/service/Sample2VO.java b/egovframework.dev.imp.templates/src/test/java/pkg/service/Sample2VO.java deleted file mode 100644 index d0de13822..000000000 --- a/egovframework.dev.imp.templates/src/test/java/pkg/service/Sample2VO.java +++ /dev/null @@ -1,79 +0,0 @@ -package pkg.service; - -/** - * Sample2 VO class - * - * @author 홍길동 - * @since 실행환경 개발팀 - * @version 1.0 - * @see - * - *
- *  == 개정이력(Modification Information) ==
- *
- *   수정일      수정자           수정내용
- *  -------    --------    ---------------------------
- *   실행환경 개발팀  홍길동          최초 생성
- *
- *      
- */ -public class Sample2VO extends Sample2DefaultVO { - - private static final long serialVersionUID = 1L; - - /** ID */ - private String id; - - /** NAME */ - private String name; - - /** DESCRIPTION */ - private String description; - - /** USE_YN */ - private String useYn; - - /** REG_USER */ - private String regUser; - - public String getId() { - return this.id; - } - - public void setId(String id) { - this.id = id; - } - - public String getName() { - return this.name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDescription() { - return this.description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getUseYn() { - return this.useYn; - } - - public void setUseYn(String useYn) { - this.useYn = useYn; - } - - public String getRegUser() { - return this.regUser; - } - - public void setRegUser(String regUser) { - this.regUser = regUser; - } - -}