728x90
반응형
eclipse 에러 메시지 :
java.lang.AbstractMethodError: Receiver class oracle.jdbc.driver.T4CConnection does not define or inherit an implementation of the resolved method 'abstract boolean isValid(int)' of interface java.sql.Connection.
서블릿을 실행시켰을 때 화면이 나오지 않는다.
해결 :
Servers 프로젝트의 context.xml 파일의 <Resource>태그 안에 factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" 삽입
<Resource
name = "jdbc/oracle"
auth = "Container"
type = "javax.sql.DataSource"
driverClassName = "oracle.jdbc.OracleDriver"
url = "jdbc:oracle:thin:@localhost:1521:XE"
username = "**"
password = "**"
maxActive = "*"
maxWait = "*"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
>
</Resource>
728x90
반응형
'studies > Back-end' 카테고리의 다른 글
gradle wrapper 명령 안 먹을 때 (0) | 2020.06.21 |
---|---|
[Spring] 스프링 개발을 위한 Maven, Gradle 설치와 환경변수 설정 (0) | 2020.06.21 |
[objective C] Visual Studio 다른 프로젝트가 실행될 때 문제 해결 (0) | 2020.06.03 |
Linux 리눅스에서 Java 클래스 파일 컴파일하기 (0) | 2020.05.30 |
[MariaDB/JSP] ClassNotFoundException 에러 해결방법 (0) | 2020.05.27 |