vs2019mvc显示index.html无法访问

vs2019mvc显示index.html无法访问,第1张

vs2019mvc显示index.html无法访问是因为没有映射。根据相关公开资料查询了解到,在vs2019mvc项目中,url处理器没有映射会导致访问indexhtml时被拦截,无法正常访问。vs2019是一个基本完整的开发工具集,它包括了整个软件生命周期中所需要的大部分工具,如UML工具、代码管控工具、集成开发环境IDE等等。

通过试图解析器 以下是代码请供参考!

@RequestMapping("h_handelList")

    public ModelAndView h_handelList () throws Exception {

        ModelAndView mv = new ModelAndView()

        mv.setViewName("/WEB-INF/jsp/h_handelList.html")

        return mv

    }

也可以在springMVC.xml里配置试图解析器的前缀后缀

<!-- 配置springmvc的视图解析器 -->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <property name="prefix" value="/WEB-INF/jsp/"/>

        <property name="suffix" value=".html"/>

    </bean>

配置了前缀后缀后可以这样写:

@RequestMapping("h_handelList")

    public ModelAndView h_handelList () throws Exception {

        ModelAndView mv = new ModelAndView()

        mv.setViewName("h_handelList")

        return mv

    }

试图解析器是必须要配置的 可以不配置前缀后缀!

spring mvc 配置后,web中的html页面报404,该怎么处理

404的错误提示是因为找不到文件,说说我的几个建议(以下均是默认楼主的jdk,tomcat,spring等环境配置没有问题的):

确保已经在tomcat发布项目并且运行

确保输入的Url都没有错误(这个经常是有些大小写的错误)

直接访问localhost:8080/项目名称/ ,会默认访问项目的index.jsp项目的,查看一下项目中有没有index.jsp

如果jsp页面不是在WEebRoot根目录的,输入格式应该为:localhost:8080/项目名称/装jsp的文件名/xxx.jsp


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6115811.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-15
下一篇 2023-03-15

发表评论

登录后才能评论

评论列表(0条)

保存