我正在尝试使用angularJS构建Spring启动REST应用程序。
因此,应用程序加载良好,包含每个JS和CSS文件。问题是,当我正在进行GET请求时,它是正确的,但是当我正在进行POST请求时它会失败,并且不会尝试调用控制器方法。
那是我的Spring Boot Application类
@EnableAspectJAutoProxy(proxyTargetClass=true)
@SpringBootApplication(scanBasePackages = {"org.test.controllers", "org.test.services"})
@Import({ WebSecurityConfig.class, DBConfig.class, ViewConfig.class})
public class Application extends WebMvcConfigurerAdapter {
public static void main(String[] args) {
System.out.println("STARTING APP");
SpringApplication.run(Application.class, args);
}
}
那是我的控制器类
@RestController
@RequestMapping("/tag")
public class TagController {
@Autowired
private TagService tagService;
@RequestMapping(method = RequestMethod.GET)
@ResponseStatus(HttpStatus.OK)
public Iterable<Tag> getAllTags() {
return tagService.getAll();
}
@RequestMapping(method = RequestMethod.POST)
@ResponseStatus(HttpStatus.CREATED)
public Tag saveTag(@RequestBody Tag tag) {
return tagService.save(tag);
}
}
所以,当我做$http.get("/tag", success, error)
时,它会给[]
,这意味着调用了控制器。
当我做$http.post("/tag", {name: 'name'}, success, error)
时,它会返回{"timestamp":1489939480282,"status":404,"error":"Not Found","message":"No message available","path":"/tag"}
确保完成映射,这是日志的一部分
Mapped "{[/tag],methods=[POST]}" onto public org.test.model.Tag org.expotest.controllers.TagController.saveTag(org.test.model.Tag)
如果重要的话,我在Tomcat服务器上运行。
任何想法我的配置可能出错?这对我来说真的很奇怪。
提前致谢。
答案 0 :(得分:0)
如果您使用的是Spring安全性,请尝试在您的configure方法中禁用csrf,应该看起来像这样:
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.csrf().disable();
}