博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java.lang.UnsupportedOperationException: Not supported by BasicDataSource
阅读量:6092 次
发布时间:2019-06-20

本文共 1662 字,大约阅读时间需要 5 分钟。

org.springframework.transaction.CannotCreateTransactionException:        Could not open Hibernate Session for transaction;        nested exception is java.lang.UnsupportedOperationException: Not supported by BasicDataSourceCaused by: java.lang.UnsupportedOperationException: Not supported by BasicDataSource        at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:899)        at net.sf.hibernate.connection.DatasourceConnectionProvider.getConnection           (DatasourceConnectionProvider.java:56)        at net.sf.hibernate.impl.BatcherImpl.openConnection(BatcherImpl.java:292)        at net.sf.hibernate.impl.SessionImpl.connect(SessionImpl.java:3373)        at net.sf.hibernate.impl.SessionImpl.connection(SessionImpl.java:3333)

Fixing the Error

Tomcat 6 does not allow applications to authenticate DataSource connections. You must make sure that you have supplied a username and password in the DataSource configuration in your Tomcat config files, for example:
<
Resource 
name
=
"jdbc/confluence" 
auth
=
"Container" 
type
=
"javax.sql.DataSource"
   
username
=
"cmiller"
   
password
=
"mysecret"
   
driverClassName
=
"org.postgresql.Driver"
   
url
=
"jdbc:postgresql://localhost/t6test"
   
maxActive
=
"20"
/>
You should then:
  1. Shut down Confluence
  2. Open the confluence-cfg.xml file in your Confluence Home directory in a text editor
  3. Delete the following lines if you find them:
    • <property name="hibernate.connection.password">your-password</property>
    • <property name="hibernate.connection.username">your-username</property>
  4. Save the modified file
  5. Restart Confluence
本文转自yunlielai51CTO博客,原文链接:http://blog.51cto.com/4925054/1117453,如需转载请自行联系原作者
你可能感兴趣的文章
.NET[C#]中NullReferenceException(未将对象引用到实例)是什么问题?如何修复处理?...
查看>>
边缘控制平面Ambassador全解读
查看>>
Windows Phone 7 利用计时器DispatcherTimer创建时钟
查看>>
程序员最喜爱的12个Android应用开发框架二(转)
查看>>
vim学习与理解
查看>>
DIRECTSHOW在VS2005中PVOID64问题和配置问题
查看>>
MapReduce的模式,算法以及用例
查看>>
《Advanced Linux Programming》读书笔记(1)
查看>>
zabbix agent item
查看>>
一步一步学习SignalR进行实时通信_7_非代理
查看>>
字符设备与块设备的区别
查看>>
为什么我弃用GNOME转向KDE(2)
查看>>
Redis学习记录初篇
查看>>
爬虫案例若干-爬取CSDN博文,糗事百科段子以及淘宝的图片
查看>>
Web实时通信技术
查看>>
第三章 计算机及服务器硬件组成结合企业运维场景 总结
查看>>
IntelliJ IDEA解决Tomcal启动报错
查看>>
默认虚拟主机设置
查看>>
php中的短标签 太坑人了
查看>>
[译] 可维护的 ETL:使管道更容易支持和扩展的技巧
查看>>