I'm doing some tests of crud with spring-boot, but in the dependence of
ojdbc remains in red, I think it is not being imported.
try using this:
<dependency>
<groupId>com.github.noraui</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2</version>
</dependency>
look at the group Id - > com.github.noraui
From what I understand, it's because Oracle asks for username and password when you want to download their products.
We had a similar problem, we solved it like that.
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>14</version>
</dependency>