Cannot create PoolableConnectionFactory(测试已通过,但Web调用出现ORA-01017错误)

J2EE 码拜 9年前 (2015-04-20) 1992次浏览 0个评论

applicationContext.xml配置:
<?xml version=”1.0″ encoding=”UTF-8″?>
<web-app xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns=”http://java.sun.com/xml/ns/javaee” xmlns:web=”http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” xsi:schemaLocation=”http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd” id=”WebApp_ID” version=”3.0″>
   <display-name>service_register_center</display-name>
  
   <context-param>  
        <param-name>contextConfigLocation</param-name>  
        <param-value>/WEB-INF/applicationContext.xml</param-value>  
    </context-param>  
    <listener>  
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
    </listener>  
    <filter>  
        <filter-name>openSessionInViewFilter</filter-name>  
        <filter-class>  
            org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>  
    </filter>  
    <filter-mapping>  
        <filter-name>openSessionInViewFilter</filter-name>  
        <url-pattern>/*</url-pattern>  
    </filter-mapping> 
    <filter>  
        <filter-name>struts2</filter-name>  
        <filter-class>  
            org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>  
    </filter>    
    <filter-mapping>  

        <filter-name>struts2</filter-name>  
        <url-pattern>/*</url-pattern>  
    </filter-mapping>  
  
<welcome-file-list>
   <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
报错:
org.hibernate.exception.GenericJDBCException: Cannot open connection
root cause 
org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (ORA-01017: 用户名/口令无效; 登录被拒绝)
root cause 
java.sql.SQLException: ORA-01017: 用户名/口令无效; 登录被拒绝

Cannot create PoolableConnectionFactory(测试已通过,但Web调用出现ORA-01017错误)
40分
这里看不到数据库连接的配置哈。
错误提示是因为你连接数据库问题,用户名密码有误。
Cannot create PoolableConnectionFactory(测试已通过,但Web调用出现ORA-01017错误)
谢谢你,问题已经解决,是由于spring注入失败造成的
Cannot create PoolableConnectionFactory(测试已通过,但Web调用出现ORA-01017错误)
LZ大神  你怎么解决的  指点下…..   我也是遇见这个问题
Cannot create PoolableConnectionFactory(测试已通过,但Web调用出现ORA-01017错误)
什么毛病啊  有问题找别人给解答 解决了倒是说一下怎么解决的啊

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明Cannot create PoolableConnectionFactory(测试已通过,但Web调用出现ORA-01017错误)
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!