我是使用Ajax Call和Spring服务器的初学者。我想将一些JSON格式的数据从html发送到Spring服务器。这是我的Ajax Call代码:
function sendToServer(){
$.ajax({
type: "POST",
url:"/maricobalagi/getJsonByMap",
dataType: "json",
data:"{formdata}",
//success and error message
success: function() {
alert("The page has been successfully loaded");
},
error: function() {
alert("An error occurred");
},
});
}
但是我遇到Ajax调用URL问题,找不到"/getJsonByMap"
值。控制台日志中有一条错误消息"POST http://localhost:8092/maricobalagi/getJsonByMap 404 (Not Found)"
。这是我的服务器代码:
public class Controller{
@RequestMapping(value = "/getJsonByMap" , method = RequestMethod.POST)
public @ResponseBody Map post(@RequestBody final Map JSONmap){
//myCode
}
}
我只有web.xml,这是我的web.xml代码:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>Generic</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
这是我的项目文件夹: Project Folder Screenshot
答案 0 :(得分:1)
使用@RestController注释您的控制器类,并在方法中返回一些东西。