Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am going to develop which will be web application as well as mobile (android / iOS / windows) application. The database in this application will be managed by Hibernate. Also as it is cross platform application, web service will also be used. What I know so far is:

HIBERNATE:
*) POJO Files (the getter-setter ones which will create database tables)
*) Model (the java class which will interact with database)
*) Controller (basically servlet which will get data from view [jsp], set it in POJO object and pass this object to Model for any of CRUD operation)
*) View (the jsp pages)

REST WEB SERVICE:
*) Web service implementation class, which have web methods, which can be called by URL from client, and it can return JSON or XML format data.

So now my question is:
*) How to integrate these both? Should I put my all POJOs and Model files to web service? If no, than what to do in this situation? If yes, than how to do that (simple example)?

What I have tried:

I have tried using Hibernate and REST web services separately, but not together. And I have no clue how to do that.
Posted

1 solution

 
Share this answer
 
Comments
Jignesh Khatri 21-Jul-16 11:02am    
I am totally noob to spring framework!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900