springmvc显示前端h5页面

爱⌒轻易说出口 提交于 2019-12-06 05:13:33

Springmvc.xml  添加 <mvc:default-servlet-handler />

    <!--扫描包 -->

    <context:component-scanbase-package="com.cn.controller"/>

    <!--注解驱动 -->

    <mvc:annotation-driven/>

    <!--视图解析器 -->

    <beanclass="org.springframework.web.servlet.view.InternalResourceViewResolver">

       <propertyname="prefix"value="/WEB-INF/html/"></property>

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

    </bean>

    <!--配置静态资源处理器 -->

    <mvc:resourceslocation="/js/"mapping="/js/**"/>

    <mvc:resourceslocation="/css/"mapping="/css/**"/>
    <mvc:resourceslocation="/imges/"mapping="/imges/**"/>

    <!--处理静态资源被 '/'拦截 -->

    <mvc:default-servlet-handler />



页面放到对应的路径下



PageShowController.java

@Controller 

public classPageShowController { 

    @RequestMapping(value = "/about",produces = "text/html;charset=UTF-8") 

    public String about(){ 

        return "about"; 

    } 

    @RequestMapping(value ="/explain",produces = "text/html;charset=UTF-8") 

    public String explain(){ 

             return"explain"; 

    } 

    @RequestMapping(value ="/download",produces = "text/html;charset=UTF-8") 

    public String download(){ 

             return"download"; 

    } 

} 


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!