Skip to content

Java Vogue

Java Tutorials

  • All Tutorials
  • Java
  • Java8
  • Spring Boot
  • Microservices
  • Spring
  • Hibernate
  • Reactjs
  • Interview Question
  • Contact

Author: javavogue

January 19, 2016 javavogue

Rest Template: Could Not Extract Response – No Suitable HttpMessageConverter Found for Response Type [X] and Content Type

When invoking a web service using RestTemplate:- restTemplate.getForObject(“http://www.server.com/api”, Bean[].class)); … the following exception occurs:- Exception in thread “main” org.springframework.web.client.RestClientException: Could

Continue reading
January 16, 2016 javavogue

how to use onclick and ontouch listener both for diffrent functionality

There is code for different functionality on onclick and also different functionality for start and stop event of ontouch .

Continue reading
December 14, 2015 javavogue

How to Convert Enumeration to Arraylist – Java Example

We can convert enumeration to arraylist in java with  the help list() method of Collections. package javaproficeincy; import java.util.Collections; import

Continue reading
December 7, 2015 javavogue

How to Send message from one user to other ( chat example) In xmpp

We have knew how to add roster in xmpp server . Now we will send message from one user to other.

Continue reading
December 7, 2015 javavogue

How to remove Roster or Friend in xmpp server

In previous post we have learn how to add roster in xmpp.  Now we will see xmpp example for remove

Continue reading
December 7, 2015 javavogue

how to add roster in xmpp using smack api

In last article we have learn how to login on xmpp server using smack api . Now In this article

Continue reading
December 5, 2015 javavogue

How to install Spark IM client in ubuntu

In previous tutorial we have learned how to install openfire .  In this tutorial we will learn how to install

Continue reading
December 5, 2015 javavogue

How To Install Openfire XMPP Server On Ubuntu

In this tutorial we will see openfire installation steps in ubuntu . In this article we will learn how to

Continue reading
December 3, 2015 javavogue

Data Types In Java

Data Types define the values that can store variables in Java. Java is a statically-typed language . A language is

Continue reading
December 2, 2015 javavogue

How Find out duplicate number between 1 to N numbers – Java Program

We have numbers from 1 to n  and one number is duplicate. Now we will find out duplicate number in

Continue reading

Posts navigation

«Previous Posts 1 2 3 4 5 6 … 35 Next Posts»

Recent Posts

  • Java Program to display student details Using Class and Object
  • TreeMap floorEntry() method in Java
  • Check If Int is Null In Java
  • Java Math min() method example
  • TreeMap ceilingKey() method in Java

Popular Posts

  • How to Read value From application.properties in spring boot
  • ‘Field required a bean of type that could not be found.’ error spring restful API
  • How to Reload Changes Without Restarting the Server – Spring Boot
  • No converter found for return value of type: org.springframework.http.converter.HttpMessageNotWritableException: No converter found
  • Spring Boot @ConfigurationProperties Property Validation
hi