Complete Project | CRUD Application from Scratch Tutorial | Spring Boot | PostgreSQL | JSP | JPA

preview_player
Показать описание
Join this channel to get access to the perks:

Please like, share, and subscribe!!

Рекомендации по теме
Комментарии
Автор

I just want to leave a comment from an Anime lover ❤
Btw i thank you for your hard work i want a project just like that
'Dattebayo'

rustamsinghsahu
Автор

Thanks for the tutorial...help a lot However, I have a second object country and I want to pick from a list of countries using a dropdown list.

earlmorne
Автор

Can you do this without using jpa and use only jdbc template and postresql. And can You tell me how can i make database on running the application if not exists

UditGoyal-ee
Автор

Hi prashant, Spring boot 3 has come and seems like there is a major changes on handling jsp (besides jakarta, and some other configuration updates). I tried my same code which was working perfectly fine in spring 2 doesn't work anymore in springboot 3 and says too many redirect when try to access login jsp page. I tried to search any new material related to springboot 3 and jsp but find none. Please contribute if you can do this tutorial using spring boot 3.

yoogeshsharma
Автор

Why have you written this in service

public List<Anime> getAllAnime() {
List<Anime> animeList = new ArrayList<>();
-> animeList.add(anime));

return animeList;
}

AND NOT THIS?

public List<Anime> getAllAnime() {

return animeRepo.findAll();
}

shwetanksingh