为了账号安全,请及时绑定邮箱和手机立即绑定

项目start后,访问页面的时候报404错误

项目start后,访问页面的时候报404错误

洋葱丶骑士 2016-03-28 21:18:37
求助求助我的springMVC如下:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"        xmlns:context="http://www.springframework.org/schema/context"        xmlns:mvc="http://www.springframework.org/schema/mvc"        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">     <!--自动扫描控制器-->     <context:component-scan base-package="com.dsc.ssm.controller"/>     <!--视图渲染-->     <!--控制器映射器和控制器适配器-->     <mvc:annotation-driven></mvc:annotation-driven>          <mvc:resources mapping="/resources/**" location="/reources/"></mvc:resources>     <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">         <property name="prefix" value="/WEB-INF/views/"/>         <property name="suffix" value=".jsp"/>     </bean> </beans>Controller如下:@Controller public class HelloController {     @RequestMapping("/hello")     public ModelAndView hello(){         ModelAndView mv = new ModelAndView("hello");         mv.addObject("spring","spring mvc");         mv.setViewName("hello");         return mv;     } }hello.jsp的目录在
查看完整描述

1 回答

?
HansonQ

TA贡献223条经验 获得超56个赞

这样贴代码 没法看啊

查看完整回答
反对 回复 2016-03-29
  • 1 回答
  • 0 关注
  • 1610 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信