我一直在尝试使用Spring Boot进行基本实验:从基本的html文件中使用我自己的REST端点。
一方面,我的SpringBoot端点不能简单(它工作正常顺便说一句):
@RestController
@EnableAutoConfiguration
public class Pru {
@RequestMapping("/hello")
String hello() {
return "hello world!";
}
}
我确信问题必须在AJAX调用中,但在调查之后我找不到它的错误。也许我缺少任何配置?
$.ajax({
type: "GET",
url: "/hello",
success: function (data) {
alert("Success!");
alert("Received Data: "+data);
},
error: function (response) {
alert("Error: "+response)
}
});
编辑:请注意,这不是重复。我只是想设置一个关于使用自己的端点的最小SpringBoot工作示例。 CORS也出现在这里,但它不是问题的根源。我不想知道如何解决CORS,我只想知道如何创建一个可以从AJAX中使用的基本端点。