A Simple JPA Example Application Video

preview_player
Показать описание
In this tutorial learn how to write a simple JPA Hello World program. JPA is the standard for Object Relation Mappin(ORM) and there are many implementations of JPA leike Hibernate. You will learn how to insert a row in the table using JPA and Maven, into Derby Database.
Рекомендации по теме
Комментарии
Автор

complete and good video. great efforts.

abhishekmahajan
Автор

Very helpful indeed, for new visitors go to 14:30 it is fully understandable

kwnkar
Автор

Thank you very much! Very simple and useful for me!

spilkapolina
Автор

you copy and paste files with your convinenience. where can i get I get them?

aachaitu
Автор

Can we use SessionFactory and build a session from the factory object to save the object?

jaymartha
Автор

Good one basic simple JPA example (not Spring though)

manishsinha
Автор

Hi, I have done everything as you explained however at the end I am getting the following error while executing StudentTest.java. Please help so that I can successfully execute the application.


I am using oracle 11g database.

Exception in thread "main"
No Persistence provider for EntityManager named TestPersistence
at
at
at

The persistence.xml is as given below.

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1"
<persistence-unit name="TestPersistence"





<properties>
<property />
<property value=" " />
<property value=" " />

<property name="hbm2ddlauto" value="create" />
</properties>
</persistence-unit>
</persistence>

bigthinker
Автор

You make good tutorials, which I do appreciate. But please work on your pronunciation (I falsely understood your name is landu..).

richJinny
Автор

I am getting below error can anyone help me with this

WARN: HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections
Exception in thread "main" [PersistenceUnit: EclipseJPA] Unable to build EntityManagerFactory
at
at
at
at
at
at
Caused by: Connection cannot be null when 'hibernate.dialect' not set
at
at
at
at

Neeru