spring 添加一个 hello 路由报错:Ambiguous mapping. Cannot map 'jeecgDemoController' method
按照 jeecg 项目文档 在 /demo/test/JeecgDemoController.php 中添加一个测试方法,返回值为 Result
类型,之后运行项目报错: Ambiguous mapping. Cannot map 'jeecgDemoController' method
。
搜索了一下,这个就是存在重复的映射地址,需要将重复项去除或修改成新的映射。在 JeecgDemoController
中搜索 /hello
果然,除了自己刚创建的这个映射以外,原项目已经创建好了另外一个 helloworld
输出方法。
注释掉自己的代码之后,再次测试,好了!
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。