我试图将grails项目连接到Windows(8)系统中的Oracle数据库(Oracle 12c)。但是,每当我运行应用程序时,都会出现以下异常:
Caused by: org.apache.commons.dbcp.SQLNestedException:
Cannot create PoolableConnectionFactory (ORA-28040:
No matching authentication protocol)
Caused by:
java.sql.SQLException: ORA-28040:
No matching authentication protocol
根据互联网的建议,我也尝试编辑 *.ora
文件,但无法正常工作。
我在sqlnet.ora
file中添加了以下代码段:
SQLNET.ALLOWED_LOGON_VERSION=10
SQLNET.ALLOWED_LOGON_VERSION_CLIENT=10
SQLNET.ALLOWED_LOGON_VERSION_SERVER=10
在这里我尝试分配(10,11,12),但它们都不起作用。
有人可以帮我吗?