본문 바로가기
반응형

JAVA68

intellij META-INF context.xml? jdbc나 jndi로 postgresql에 연결하려고 접속 정보를 context.xml에 넣어줄려고 했는데 intellij에 context.xml이 없었다! 그래서 아래와 같이 해결했다! 참고: https://sendthesignal.tistory.com/entry/IntelliJ-contextxml-%ED%8C%8C%EC%9D%BC-%EC%B6%94%EA%B0%80%ED%95%98%EA%B8%B0-%ED%86%B0%EC%BA%A3contextxml tomcat에서 dbcp를 사용할 경우 server.xml에 db 접속 정보를 설정하여 사용한다. Server.xml에 설정할 경우 프로젝트 마다 접속 정보를 변경해줘야하는데 그 방식보다는 META-INF/context.xml을 이용하는 방법이 있다. 이클립.. 2019. 9. 10.
[Postgresql] JNDI 설정 | applicationContext.xml | context.xml | web.xml jdbcJNDI jdbc/miniCaPostgres javax.sql.DataSource Container 구동해보고 톰캣이 잘 연결되면 맞게 설정된 것이다. 2019. 9. 4.
intellij error - 2 * dataSourceTest 에러 -1 Caused by: org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Bean name 'dataSource' is already used in this element Offending resource => 에러 해결 pom.xml에 datasource를 하나만 남긴다. * dataSourceTest 에러 -2 Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in file => 에.. 2019. 9. 3.
intellij error - 1 * inject 에러 Cannot resolve symbol 'Inject' => 에러해결 pom.xml에 Inject 넣어주기 javax.inject javax.inject 1 * resources 에러 Cannot resolve location '/resources/' 정적자원 매핑해주기 위하여 아래와 같이 추가하는데, => 에러해결 앞에 mvc 입력 후 alt+enter 그러나 더 정확한 에러 해결은 resources를 사용하지 않으면 선언하지 않는것이다. resources에는 보통 정적인 것들이 담겨져있다. 예를 들어 css js img와 같은 것들 이것들을 사용하지 않으면 주석처리해도 무방하다. 만약 css와 js img와 같은 것들을 사용한다면 resources 폴더를 만들고 다시 위와 같이 .. 2019. 9. 2.
반응형