[02-ORACLE] 01_오라클 정상설치 확인

Posted by yvette.theomom's blog
2014. 6. 30. 10:26
보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

[이미지] 괜찮은 로고 만들기 관련 포스트_Link

Posted by yvette.theomom's blog
2014. 6. 25. 09:33 Referral Sites
반응형

http://ndolson.com/2616





'Referral Sites' 카테고리의 다른 글

유용한 엑셀서식 링크  (0) 2022.07.29
[Scrap] 개발자 블로그  (0) 2015.07.14
[SCRAP] 강좌 정보 모음  (0) 2015.07.03
[java-study-site] @modelattribute 사용법 검색  (0) 2015.05.14
[ORACLE] 검색중..  (0) 2014.01.28

[lpsms-sm] 프로그램개선요청_서식 및 예시

Posted by yvette.theomom's blog
2014. 6. 24. 10:59
보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

[Eclipse-Tomcat] 서버구동시 Oracle 접속 에러_Could not open JDBC Connection

Posted by yvette.theomom's blog
2014. 2. 24. 15:45 개발/021_에러노트
반응형
반응형

Tomcat 은 붙었는데, 실제 check out 받은 프로젝트에 붙질 못할때..

알고보니 context-datasource.xml 의 설정정보가 다른것을 깜빡하고 수정하지 않음...

 

 

이때 에러메세지 내용은..

Could not open JDBC Connection for transaction; nested exception is org.apache.commons.dbcp.SQLNestedException: 

Cannot create PoolableConnectionFactory (IO 오류: The Network Adapter could not establish the connection 

 

DB 정보가 다르니....붙질 않지....^^

 

오라클 접속에러시

 

 

 

꼭 /lpsms/src/main/resources/egovframework/spring/context-datasource.xml

 

파일을  확인하자!!

[SQL02] 화면의 select box 전체표시 Query_화면 xPlatForm

Posted by yvette.theomom's blog
2014. 2. 20. 10:22 DB 개발/030_SQL
반응형

 

sql

 

-- select box 에서 전체항목 표시하는 query
select 0 GBN                                       -- -----------> DATASET 의 컬럼이름 구조와 같다
      , '' as CM_CD
      , '전체' as CM_CD_NM
  from dual
 
 UNION ALL 
 
 select 1 GBN
      , CM_CD
      , CM_CD_NM
  from LCF_CD
 where UPP_CM_CD = 'LCF1000920'
   and USE_YN = 'Y'
   and SEQ_NO < 4  
 ; -- -----------------> 열의 개수가 맞을것.

 sql 결과

 

 xPlatForm 에서의 dataset 구조

 DATASET NAME : ds_codeOfcStt

 

 

결과 및 조회화면

 

 

 

 

 

 

 

[ORACLE] 검색중..

Posted by yvette.theomom's blog
2014. 1. 28. 14:31
보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

ECLIPSE-TOMCAT-org.springframework.web.context.ContextLoaderListener

Posted by yvette.theomom's blog
2014. 1. 27. 16:05 개발/021_에러노트
반응형

2014.01.27 Yvette



Eclipse-Tomcat Server 구동시 아래와 같은 에러

 

2014. 1. 27 오후 3:52:02 org.apache.catalina.core.AprLifecycleListener init

정보: Loaded APR based Apache Tomcat Native library 1.1.20.

2014. 1. 27 오후 3:52:02 org.apache.catalina.core.AprLifecycleListener init

정보: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].

2014. 1. 27 오후 3:52:02 org.apache.tomcat.util.digester.SetPropertiesRule begin

경고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:lpsms' did not find a matching property.

2014. 1. 27 오후 3:52:03 org.apache.coyote.http11.Http11AprProtocol init

정보: Initializing Coyote HTTP/1.1 on http-8090

2014. 1. 27 오후 3:52:03 org.apache.coyote.ajp.AjpAprProtocol init

정보: Initializing Coyote AJP/1.3 on ajp-8009

2014. 1. 27 오후 3:52:03 org.apache.catalina.startup.Catalina load

정보: Initialization processed in 785 ms

2014. 1. 27 오후 3:52:03 org.apache.catalina.core.StandardService start

정보: Starting service Catalina

2014. 1. 27 오후 3:52:03 org.apache.catalina.core.StandardEngine start

정보: Starting Servlet Engine: Apache Tomcat/6.0.29

2014. 1. 27 오후 3:52:03 org.apache.catalina.core.StandardContext listenerStart

심각: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener

java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener

at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1645)

at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1491)

at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4078)

at org.apache.catalina.core.StandardContext.start(StandardContext.java:4630)

at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)

at org.apache.catalina.core.StandardHost.start(StandardHost.java:785)

at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)

at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:445)

at org.apache.catalina.core.StandardService.start(StandardService.java:519)

at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)

at org.apache.catalina.startup.Catalina.start(Catalina.java:581)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:592)

at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:289)

at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:414)

2014. 1. 27 오후 3:52:03 org.apache.catalina.core.StandardContext listenerStart

심각: Skipped installing application listeners due to previous error(s)

2014. 1. 27 오후 3:52:03 org.apache.catalina.core.StandardContext start

심각: Error listenerStart

2014. 1. 27 오후 3:52:03 org.apache.catalina.core.StandardContext start

심각: Context [/lpsms] startup failed due to previous errors


해결 Guide URL ==> 

http://stackoverflow.com/questions/6210757/java-lang-classnotfoundexception-org-springframework-web-context-contextloaderl


 

203down voteaccepted

I had a similar problem when running a spring web application in an Eclipse managed tomcat. I solved this problem by adding maven dependencies in the project's web deployment assembly.

  1. Open the project's properties (e.g., right-click on the project's name in the project explorer and select "Properties").
  2. Select "Deployment Assembly".
  3. Click the "Add..." button on the right margin.
  4. Select "Java Build Path Entries" from the menu of Directive Type and click "Next".
  5. Select "Maven Dependencies" from the Java Build Path Entries menu and click "Finish".

You should see "Maven Dependencies" added to the Web Deployment Assembly definition.

share|improve this answer


[Eclipse]sqlmap~.xml 선언부에러_<?xml version="1.0" encoding="UTF-8"?>

Posted by yvette.theomom's blog
2014. 1. 27. 15:56 개발/021_에러노트
반응형

어느날 갑자기 아무것도 xml 바꾼게 없는데 내 workspace 에서 

<?xml version="1.0" encoding="UTF-8"?>

이 부분에 모든 xml 에서 에러 발생...


찾아보니...


http://blog.naver.com/park_yun_ho/150085775654