老师,http://localhost:8080/o2o/shopadmin/shopoperation不显示,也没看到报错,,改为index.html放在WEB-INF外可以,但不显示样式,配置如下
1、ShopAdminController.java代码如下
package com.imooc.o2o.web.shopadmin;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
<mvc:annotation-driven />
<!-- 2.静态资源默认servlet配置,不拦截静态资源
(1)加入对静态资源的处理:js,gif,png (2)允许使用"/"做整体映射 -->
<mvc:resources mapping="/resources/**" location="/resources/"/>
<mvc:default-servlet-handler />
<!-- 3定义视图解析器-->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/html/"></property>
<property name="suffix" value=".html"></property>
</bean>
<!-- 4扫描web相关的bean-->
<context:component-scan base-package="com.imooc.o2o.web"/>
}
3、shopoperation.html的引入css的方式如下(css下载在本地),放置的路径
SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需
了解课程