我有一个 extjs 4 表单,我正在发送信息以将其保存在数据库中我正在使用 spring security 和 spring mvc
所以在我提交函数的 extjs 表单中,我使用了这个 url
method:'POST',
url: 'meeting/create.action',
在我的控制器上我用这个
@RequestMapping(value = "/meeting/create.action", method = RequestMethod.POST)
public void add(MeetingUI data) {
System.out.println("In add post method");
MeetingUI savedUser = service1.create(data);
if (savedUser != null) {
logger.debug(" Created Succesfully");
} else {
logger.debug("Error trying to create account.");
}
}
没有收到数据信息保存在数据库中为空和其他错误显示
HTTP Status 404 - /writeup/WEB-INF/meeting/create.jsp
我不希望 /meeting/create.action 与 spring security 集成我认为这是错误
请任何人有解决方案