I have a simple Spring Boot project with this Gradle build file:
apply plugin: \'java\' apply plugin: \'eclipse\' apply plugin: \'spring-boot\' apply plugin: \'w
Adding @ResponseBody in your controller will solve this problem as below:
public @ResponseBody void test() { }