oracle spring 连接数据库 报错

1.JDWP Unable to get JNI 1.2 environment

把eclipse重启

2.Io 异常: The Network Adapter could not establish the connection

A ResourcePool could not acquire a resource from its primary factory or source.

注意把oracle的几个服务都打开

把数据库连接

oracle.url=jdbc:oracle:thin:@localhost:1521:xxx

改成

oracle.url=jdbc:oracle:thin:@ip:1521:xxx

 

 

2.如果oracle数据库无法连接,请按以下修改
1.在Oracle 10G 中,首先启动OracleOraDb10g_home1TNSListener,再启动OracleServiceORCL。
2.在配置和移植工具中,重新配置Net Manager:Tcp/ip 为【localhost计算机名】注意方括号的解释为:(localhost + 你的计算机名)。
3.打开Net Configuration Assistant,-->下一步-->重新配置-->下一步--->--->完成。
这样就好了。
jdbc:oracle:thin:@localhost:1521:ORCL;
User Name = scott;
Password = tiger;


lz这样:开始--> 运行--> cmd--> netstat   -na
找找里面有没有如下一行:
TCP         127.0.0.1:1521                   0.0.0.0:0                             LISTENING

你可能感兴趣的:(eclipse,spring,oracle,jdbc,jni)