2021
06-13
06-13
使用springboot暴露oracle数据接口的问题
新建一个SpringInitializr项目2.把pom.xml文件中的oracle依赖换成自己的oracle版本依赖:原来的:现在的:<dependency><groupId>com.oracle</groupId><artifactId>ojdbc6</artifactId><version>11.2.0.1.0</version></dependency>3.编辑application.ymlspring:datasource:driver-class-name:oracle.jdbc.driver.OracleDriverurl:jdbc:oracle:thin:@192.168.21.200:1521...
继续阅读 >