본문 바로가기

Web Dev

JAVA Spring [전자정부프레임워크] 프로젝트 환경 설정 !

반응형

전자정부 프레임워크에 대해 지식은 없으며 해당 프로젝트 소스를 내 개발 컴퓨터로 옮겨오면서 발생한 문제들을 적어 보았다. 

아직 작동은 되나 무슨 원리인지 잘 모르겠다. 


정전임이 쓰던 전자정부프레임워크 v3.7 사용 -> 드라이브 c 에 놀렸다


톰켓도 정전임님이 쓰던거 사용 apache-tomcat-7.0.91 

서버 실행 해봄 -> 나오는 에러들 확인


1. Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
-https://cheezred.tistory.com/167



3. [Error] The method getTextContent() is undefined for the type Node 
-https://secondmemory.kr/340
-https://marsland.tistory.com/497


-> 프로젝트 (마우스 오른쪽 클릭) -> Properties -> 

1. java Build Path -> Add Library -> Server Runtime -> 사용할 tomcat 버전 선택 -> finish
2. java Compiler ->compiler 버전 일치 

3. java Build Path -> Libraries -> JRE System Library [javaSE-1.8] -> Edit 버튼 클릭 -> 버전확인 + Enviroments 버튼 클릭 


tomcat -> c 드라이브에 위치 (어디든 상관없다는데 잘... ) 

전자정부 프레임워크 3.7 사용하던거 옮겨 보자  ?  -> C에다가  -> 에러남 ! 



정전임님 메세지

아래 추가 pom.xml

<dependency>
    <groupId>org.apache.pdfbox</groupId>
    <artifactId>pdfbox</artifactId>
    <version>2.0.20</version>
</dependency>



server.xml -> <Context docBase="NewNTimber" path="/" reloadable="true" source="org.eclipse.jst.jee.server:NewNTimber"/>

http://archive.apache.org/dist/tomcat/tomcat-7/


 

Index of /dist/tomcat/tomcat-7

 

archive.apache.org

 

 

 

MSSQL 연결

회사 데이터베이스 백업 -> 복원 

0.MsSql2012 설치. SQLEXPRADV_x64_KOR, SQLServer2012SP3-KB3072779-x64-KOR 설치 

 -> 서버 생성 -> 복원 -> 사용자  ID PW 확인 

https://server-talk.tistory.com/128

context-datasource.xml  수정 

https://nahosung.tistory.com/88

 

https://truecode-95.tistory.com/5

 

[Mssql] EgovFramework 전자정부프레임워크 Microsoft SQL server Mssql 연동하기

mssql을 설치했으니 연동을 해봐야지!  ٩(͡◕_͡◕ 1. maven repository 사이트 접속 Maven Repository: Search/Browse/Explore Che Multiuser :: Resource Last Release on Aug 26, 2020 mvnrepository.com Se..

truecode-95.tistory.com

<!-- datasource 설정 (개발 DB)   --> 
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/>
<property name="url" value="jdbc:sqlserver://127.0.0.1:1433;DatabaseName=jysoft_ntb_new" />
<property name="username" value="sa"/>
<property name="password" value=""/>
</bean>
    

 

[Mssql] EgovFramework 전자정부프레임워크 Microsoft SQL server Mssql 연동하기

mssql을 설치했으니 연동을 해봐야지!  ٩(͡◕_͡◕ 1. maven repository 사이트 접속 Maven Repository: Search/Browse/Explore Che Multiuser :: Resource Last Release on Aug 26, 2020 mvnrepository.com Se..

truecode-95.tistory.com

 

 

반응형