I have developed 1-REST web services with help of Spring-Boot technology.
Now, while i am going to requesting any thing it isn't responding me into JSON format ? in stead of it it's responding into plain "String" format.
Also, note i have used annotation @RestController at Controller class level.
Some how i am thinking some configuration i am missing. is it so ?
My current Maven Configuration is ,
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.6.RELEASE</version>
</parent>
Also, i have noticed that while i am requesting(POST) for getting List then in such case it's returns an array of JSON object.
Can anyone guide me what's wrong with me ?