错误日志

url:http://localhost:8080/manager/initStudent

SSM报错The page you tried to access (/manager/initStudent) does not exist.

错误代码

SSM报错The page you tried to access (/manager/initStudent) does not exist.

原因

tomcat的内部路径中有manager这个路径,而代码中的映射路径就映射到tomcat内部去了。

打开电脑本地安装的tomcat的webapps文件夹

SSM报错The page you tried to access (/manager/initStudent) does not exist.

打开manager文件夹如下:

SSM报错The page you tried to access (/manager/initStudent) does not exist.

因此是映射路径和tomcat的内部路径冲突了。

解决

修改代码中的映射路径。

将manager修改为managerUser就不会报错了。

正确代码

SSM报错The page you tried to access (/manager/initStudent) does not exist.

相关文章:

  • 2021-06-10
  • 2022-12-23
  • 2021-11-16
  • 2022-03-01
  • 2022-12-23
  • 2021-09-06
  • 2021-08-18
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-09
  • 2021-05-22
  • 2021-12-24
  • 2021-04-22
  • 2022-12-23
相关资源
相似解决方案