Skip to content

cagri387/hibernate-cache-example-1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DB Scripts:

create table parent (id serial, parent_name character varying(20));
create table child (id serial, parent_id integer not null, sex character varying(10));

INSERT INTO public.parent(parent_name) values('Cemalettin');
INSERT INTO public.parent(parent_name) values('Kemalettin');

INSERT INTO public.child (parent_id, sex) VALUES(1, 'girl');

INSERT INTO public.child (parent_id, sex) VALUES(1, 'girl');

INSERT INTO public.child (parent_id, sex) VALUES(1, 'boy');

GRANT ALL ON TABLE parent TO mb_core;
GRANT ALL ON TABLE child TO mb_core;

About

Hibernate First Level Cache Example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published