toString() method

This method returns the string representation of the object which invokes this method. This method is mainly used to represent the java object into a meaningful string. This is mostly required while logging the object information into logger file. This method is defined in Object class and any other class in java(apparently subclass of Object […]

Share this article on

JAX-WS integration with spring

In this article, we will discuss about creating a web service using JAX-WS and we will inject a bean using spring’s popular concept called Dependency injection. Requirement: Create a web service which can print some message and use JAX-WS with Spring to achieve it. Step 1 Create a new maven web project Step 2 Update […]

Share this article on
< Previous Next >