一直搞不明白两者的区别。 如果使用了SpringMVC,事实上,bean的配置完全可以在xxx-servlet.xml中进行配置。为什么需要applicationContext.xml?一定必须? 一、 因为直接使用了SpringMVC,所以之前一直不明白xxx-servlet.xml和applic...
分类:
移动开发 时间:
2014-06-27 21:20:59
阅读次数:
257
昨天在写springmvc的时候,在web.xml中配置了DispatcherServlet,如下: DispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath...
分类:
编程语言 时间:
2014-06-27 20:50:28
阅读次数:
170
Spring MVC 3提供了基于注解、REST风格等特性,有些方面比Struts 2方便一些。这里进行Spring MVC 3的开发环境搭建,即开发Hello World程序。1,拷贝Spring MVC 3类库到WEB-INF/lib下,经测试至少需要如下几个,版本为Spring 3.1.1:o...
分类:
编程语言 时间:
2014-06-26 23:19:15
阅读次数:
440
Spring MVC响应中返回JSON数据的方法:配置与以前相同使用的注解配置,但WEB-INF/lib的类路径里面要有jackson-all-1.6.9.jar这个库文件,然后在controller里面这样写:@Controller@RequestMapping("/user")publiccla...
分类:
编程语言 时间:
2014-06-26 21:53:40
阅读次数:
227
Spring MVC3在controller和视图之间传递参数的方法:一, 从controller往视图传递值, controller---->视图1)简单类型,如int, String,直接写在controller方法的参数里,是无法传递到视图页面上的(经测试)。(而用@RequestParam(...
分类:
编程语言 时间:
2014-06-26 21:33:28
阅读次数:
256
概述:
springmvc 框架围绕DispatcherServlet这个核心展开,DispatcherServlet是Spring MVC的总控制,它负责截获请求并将其分派给相应的处理器处理。SpringMVC框架包括注解驱动控制器、请求及响应的信息处理、视图解析、本地化解析、上传文件解析、异常处理以及表单标签绑定等内容。
SpringMVC是主要基于MODEL2实现的技术框架,Model2...
分类:
编程语言 时间:
2014-06-26 10:29:39
阅读次数:
433
我们直接看例子:
Map mallMap = new HashMap();
mallMap.put(MallStatus.SELFMALL.toString(),
MallStatus.SELFMALL.getValue());
mallMap.put(MallStatus.DELEGATIONMALL.toString(),
MallStatus.DELEGATIONMALL.getV...
分类:
编程语言 时间:
2014-06-25 19:59:55
阅读次数:
207
下面是mybatis配置文件xxxx.xml缺失resultMap的错误:
严重: Servlet.service() for servlet [SpringMVC] in context with path [/ZHDM] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyB...
分类:
其他好文 时间:
2014-06-25 07:35:36
阅读次数:
261
scala 入门Eclipse环境搭建及第一个入门经典程序HelloWorld...
分类:
系统相关 时间:
2014-06-24 18:42:40
阅读次数:
270
#!/usr/bin/envpython#Filename:helloworld.py#Theuseof‘and"print‘hello,world!‘print"hello,world!"#Theuseof‘‘‘and"""print‘‘‘Thisisamulti-linestring.Thisisthefirstline.Thisisthesecondline."What‘syourname?"Iasked.Hesaid"Bond,JamesBond."‘‘‘print"""Thisisamulti-li..
分类:
编程语言 时间:
2014-06-24 17:05:23
阅读次数:
239