Spring Boot | Tutorial 20 : Spring Data JPA and Oracle 19c

preview_player
Показать описание
Oracle 19c with JDBC Template
In this, tutorial we have integrated Oracle with Spring boot, by adding external jars,
we learn to initialize it, and we perform crud operation.

Link:

Learn Spring Boot from Scratch from Us.
Best Way to learn something is to create, create a project at the end and learn with us.

Please Like, Subscribe and Comment your questions and requests.
Рекомендации по теме
Комментарии
Автор

Hi I am using Springboot 2.2.5 with oracle 19c but REF_CURSOR with ojdbc8 gives Invalid column type: 2012 error. Any solution for that.

shrutipokhriyal
Автор

Hi,
I get the below error, any idea
Caused by: ORA-00904: "STUDENT0_"."STUDENT_ID": invalid identifier

indranilsanyal
Автор

Listener refused the connection with the following error:
ORA-12514, TNS:listener does not currently know of service requested in connect descriptor

Victor-hbhi
Автор

Hello sir, its a very nice effort from you to teach your viewers many fifferent web applications procedures.
But is it possible for you to make a video on a complete little web project on crud on spring boot connecting database and front end part also along with login? It will be much helpful

adatta
Автор

Misleading title. Video describes only Oracle 12c config

RagupathyNatarajan
Автор

Same, I get ORA-00904: : invalid identifier. Pretty sure the format is correct
CREATE TABLE employee (
id NUMBER GENERATED ALWAYS AS IDENTITY,
first_name varchar2(255) not null,
last_name varchar2(255) not null,
address varchar2(255) not null,
joining_date DATE default sysdate
)
INSERT INTO employee (first_name, last_name, address) values('BAT', 'MAN', 'BAT CAVE');

howang
Автор

you did not show the repository layer at all.

RajshekarTargar