Gaos
Gaos

Reputation: 1

CRUD Pattern JSF

i have a task of education to create an aplication that implement CRUD pattern in java with JSF framework.. is there any one help me to explain about CRUD pattern in java and example code of that (CRUD pattern code).. Thank you very much for all.

Upvotes: 0

Views: 1978

Answers (3)

jiai
jiai

Reputation: 11

Try this one: http://netbeans.org/kb/docs/web/jsf20-crud.html

Upvotes: 1

Torres
Torres

Reputation: 5400

the tutorials about JSF you´ve got are very good, and talking about CRUD is the acronym for CREATE, RETRIEVE, UPDATE, DELETE.

I think they´re asking for a simple application where you can ask data in a form, and then insert it at DB. Then you can delete it, retrieve it or modify it.

I hope this helps.

http://en.wikipedia.org/wiki/Create,_read,_update_and_delete

http://java.dzone.com/articles/conversational-crud-java-ee-6?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+javalobby%2Ffrontpage+%28Javalobby+%2F+Java+Zone%29

Upvotes: 0

Jigar Joshi
Jigar Joshi

Reputation: 240908

Here is complete tutorial from NetBeans for JSF 1.2.
Here is one from IBM.

Upvotes: 2

Related Questions