icon
Leave a message

Welcome to Java4u

A Single Place for all Java Resources

Looking for something?

Subscribe to this blog!

Receive the latest posts by email.

.Just enter your email below if you want to subscribe!

Email

OAuth 2.0

OAuth 2.0 is an open authorization framework and mainly focuses on authorization flows fand secures access to many well-known web APIs.

Tuesday, November 25, 2014

E-Books : Design Patterns

Head First Design Pattern    Click to Download or View   ...

Monday, October 20, 2014

Software Engineering Videos

Software Engineering apply the principles of engineering to the design, development, maintenance, testing, and evaluation of the software and systems that make computers or anything containing software work. Click on the links to Download or Watch   01 Introduction to Software Engineering   02 Introduction to Software Engineering 03 Overview...

Saturday, October 18, 2014

E - Books : Spring

Spring in Action  Click to Download or View &nb...

Struts 2 Videos

  The struts 2 framework is used to develop MVC-based web application. Struts 2 is the combination of webwork framework of opensymphony and struts 1.                             Struts2 = Webwork + Struts1 The struts framework was...

Tuesday, September 30, 2014

AngularJS : Introduction and Hello example

Angular JS is a JavaScript MVC framework created by Google that lets you build well structured, easily testable, and maintainable front-end applications that makes it easier to implement RIA web applications. What is AngularJS? AngularJS is based on the MVC pattern (Model View Control). Therefore AngularJS separates your RIA application into models, views and...

Monday, September 29, 2014

Hibernate Videos

Hibernate is an Object-Relational Mapping(ORM) solution for JAVA, providing a framework for mapping an object-oriented domain model to a traditional relational database. It is a powerful, high performance Object-Relational Persistence and Query service for any Java Application. Hibernate maps Java classes to database tables and from Java data types to SQL data types. Hibernate...

Thursday, July 3, 2014

Unmarshalling and Marshalling

Unmarshalling is the process of binding the XML document using JAXB compiler and generating mapping java classes then constructing the instances with values available in XML document.Marshalling is the reverse process of it. First we construct the instances and then write a XML document using the constructed instances.In both the cases, we need create POJO classes first....

JAXB : Architecture & Binding Process

  XML Schema : An XML schema is a definition file for a XML document & uses XML syntax to describe the relationships among elements, attributes and entities in an XML document. It maintains the rule/syntax for a XML document. An XML document need not always have a schema. While using JAXB XML schema is not a mandatory requirement. Process can start with java pojo...