só baixei o projeto e quando eu executo a classe HelloController não funciona.
Entro no servidor localhost:8080 e aparece erro 4040, com mapping não reconhecido. Não tenho o retorno na string. O código está assim:
package controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HelloController {
@RequestMapping("/")
@ResponseBody
public String hello() {
return "Hello World!";
}
}
Alguem poderia me ajudar, por favor? Obrigado