How to configure Spring boot with oracle
---------------------------------------------------------
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<scope>runtime</scope>
</dependency>
-------------------------------------------------
server.port=8023
spring.datasource.url=jdbc:oracle:thin:@localhost:1521:xe
spring.datasource.username=prince
spring.datasource.password=prince
Comments
Post a Comment