Monday 14 January 2013

TopLink Without JPA

What is TopLink?

TopLink is an ORM(object relational management) framework for Java. Like the other popular framework Hibernate, using TopLink we can map Java objects to database entities or tables and can do various persistent operations. Also we can convert Java objects into XML objects. It is a product from Oracle Corporation. In 2007, Oracle donated the source code to Eclipse Foundation and the project EclipseLink was born. EclipseLink is the reference implementation for the Java Persistence API (JPA).

Tuesday 1 January 2013

Struts and JSON

What is Struts?

Struts is a popular open source framework from Apache Software Foundation based on MVC (model-view-controller) architecture. Though there are many other MVC frameworks available like Spring MVC, JSF in the market to develop web applications, Struts has retained its popularity because of its simple architecture and low learning curve. 

What is JSON?

JSON stands for Java Script Object Notation. It is a light weight data-interchange format using which we can easily parse and generate data. It is language independent, yet it uses popular object oriented convention.  Slowly and slowly it is getting accepted by the software industry as a formidable challenger to XML, the other popular format.