springboot配置oracle连接池报java.sql.SQLException: The Network Adapter could not establish the connection
时间: 2023-11-16 20:58:25 浏览: 152
解决 The Network Adapter could not establish the connection
当使用Spring Boot配置Oracle连接池时,如果出现"java.sql.SQLException: The Network Adapter could not establish the connection"错误,可能是以下原因导致的:
1. 数据库服务器地址或端口号错误。请检查您的URL配置是否正确,并确保数据库服务器地址和端口号正确。
2. 数据库服务器未启动。请检查您的数据库服务器是否已启动。
3. 防火墙或网络问题。请检查您的防火墙设置,并确保网络连接正常。
4. Oracle SID或服务名称错误。请检查您的SID或服务名称是否正确。
解决方法:
1. 检查您的URL配置是否正确,并确保数据库服务器地址和端口号正确。
2. 检查您的数据库服务器是否已启动。
3. 检查您的防火墙设置,并确保网络连接正常。
4. 检查您的SID或服务名称是否正确。
阅读全文