自定义 restful 接口 不生效问题

@RestController
@RequestMapping(“wechat”)
public class WechatController {

private final static Logger logger = LoggerFactory.getLogger(WechatController.class);

@GetMapping("/contact/token")
public void contact(){}

浏览器访问http://localhost:8080/wechat/contact/token 404not found !!!! 自定义restful接口 如何生效 (不支持 还是有什么隐藏路径)

自定义 RestAPI 可参考这里: