DEBUG TOMCAT以后

来源:4-13 前后端联调验证整体模块功能

慕慕0286245

2018-02-13

利用谷歌浏览器访问http://localhost:8080/o2o/shopadmin/shopoperation没有反应

写回答

2回答

翔仔

2018-02-14

请问有没有配置了相关的路由

	@RequestMapping(value = "/shopoperation")
	public String shopOperation() {
		// 转发至店铺注册/编辑页面
		return "shop/shopoperation";
	}

并且spring-web,xml配置了相关解析成html的配置

	<!-- 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>

请仔细对照视频

0
9
慕慕0286245
回复
翔仔
是断点的问题,谢谢老师
2018-02-21
共9条回复

翔仔

2018-02-13

同学好,需要看控制台报什么错 如果没错 请看看你的路由设定是否正确

0
1
慕慕0286245
二月 14, 2018 1:00:59 上午 org.apache.tomcat.util.digester.SetPropertiesRule begin 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:o2o' did not find a matching property. 这句算是错误吗
2018-02-14
共1条回复

Java双版本(SSM到SpringBoot)校园商铺全栈开发

SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需

5113 学习 · 8144 问题

查看课程