我在tomcat的server.xml中配置了oracle数据库
然后在我的网络应用程序(spring mvc项目)中,我在context.xml中解析它
sql.DataSource"/>
之前我能够连接到这个数据库.我没有工作一个星期.然后,当我尝试启动它时,总是得到:
SEVERE: Servlet.service() for servlet [action] in context with path [/WebUI] threw exception [Request processing Failed; nested exception is javax.persistence.QueryTimeoutException: Could not open connection] with root cause
**java.sql.sqlException: ORA-01017: invalid username/password; logon denied**
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:440)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:389)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:382)
at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:573)
at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:431)
at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:445)
at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:191)
at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:366)
at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:752)
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:366)
at oracle.jdbc.driver.PhysicalConnection.
我确信用户名和密码是正确的.
有人可以给我一些关于这里发生了什么的暗示吗?
最佳答案
原文链接:https://www.f2er.com/spring/431792.html