public class BusinessContext implements IBusinessContext
    @RequestMapping(value = { "/*.do", "/**/*.do" })
    @ResponseBody
//    public Map<String, Object> execute(@RequestBody IBusinessContext ctx, HttpServletRequest request, HttpServletResponse response) {
    public Map<String, Object> execute(@RequestBody BusinessContext ctx, HttpServletRequest request, HttpServletResponse response) {

        // 过滤输出报文
        return new HashMap<>();
    }

why // public Map execute(@RequestBody IBusinessContext ctx, HttpServletRequest request, HttpServletResponse response) {

this code can not run success in my new project and in my company project it run success?

Comment From: bclozel

Thanks for getting in touch, but it feels like this is a question that would be better suited to Stack Overflow. As mentioned in the guidelines for contributing, we prefer to use the issue tracker only for bugs and enhancements. Feel free to update this issue with a link to the re-posted question (so that other people can find it) or add some more details if you feel this is a genuine bug.