jeecg页面调用接口404,postman调用401

新建了一个模块,ShiroConfig已经放开权限了,但是前端vue页面调用报404,postman调用报401。
经过排查发现问题出现在model的命名上。

模块的pom.xml命名如下:

<artifactId>queue-systemartifactId>
<groupId>org.jeecg.modules.queue-systemgroupId>

随后将所有相关的模块名称改成queue,问题就解决了。

<artifactId>queueartifactId>
<groupId>org.jeecg.modules.queuegroupId>

附加说明:

单体项目要在此处添加模块:
jeecg页面调用接口404,postman调用401_第1张图片

你可能感兴趣的:(疑难杂症,前端)