IDEA加载Eclipse项目,无法访问jsp

  • Post author:
  • Post category:其他




IDEA部署eclipse出现的问题



1.无法访问jsp文件

1.IDEA直接部署eclipse项目,如果直接使用SpringBootApplication来启动,启动不会报错,但是访问jsp时会出报404

在这里插入图片描述



解决方法

1.查看了很多文件,发现问题可能如下:

https://blog.csdn.net/op_violet/article/details/79093328?ops_request_misc=&request_id=&biz_id=102&utm_term=IDEA 导入eclipse项目 jsp无法访问&utm_medium=distribute.pc_search_result.none-task-blog-2

all

sobaiduweb~default-4-79093328.nonecase&spm=1018.2226.3001.4187


但是使用上面博文所提到的方法仍是无法解决



真正的解决方法是使用tomcat启动。方法如下:

1.点击Edit configurations

在这里插入图片描述

2.点击加号,选择tomcat server,选择Local

在这里插入图片描述

3.直接点击fix,选择你要部署的项目

在这里插入图片描述
在这里插入图片描述


注意:

需在vm options中添加:-Dfile.encoding=UTF-8
否则控制台打印会出现乱码

在这里插入图片描述

4.然后点击Apply–》OK即可。

5.启动项目,便可访问。

在这里插入图片描述



版权声明:本文为sin_dapeng原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。