在保存实体处抛出异常
HTTP Status 500 - Request processing failed; nested exception is java.lang.IllegalArgumentException: attempt to create merge event with null entity
使用注释@EnableSpringDataWebSupport
后。没有注释一切都有效!
WebConfig
//code
@EnableSpringDataWebSupport
public class WebConfig extends WebMvcConfigurerAdapter
//控制器
@RequestMapping(method = POST, value = "*****")
public String typeForm(@Valid @ModelAttribute Type,
BindingResult bindingResult,
RedirectAttributes rAttr)