spring
freewind
学习中分享快乐~
展开
-
用spring实现文件上传
今天需要用到文件上传,用的是spring框架。在网上搜了好久没找到合适的代码。经过师傅的指点5分钟搞定。觉得挺简单的! 1.首先在applicationContext.xml文件中配置文件上传解决器 <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsM原创 2013-03-14 21:31:30 · 10645 阅读 · 1 评论 -
springMVC配置框架
配置文件 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cxf="http://cxf.apache.org/core" xmlns:p="http://cxf.apache.org/po原创 2013-05-25 10:21:25 · 895 阅读 · 0 评论 -
The hierarchy of the type TestTest is inconsistent。It is indirectly referenced from
很简单的一个类,继承自spring的抽象测试类。但是报错。 public class Atest extends AbstractTestNGSpringContextTests{ //这一行报错。 } 报错的内容是: - Breakpoint:TestTest - The hierarchy of the type TestTest is inconsi原创 2013-11-09 14:45:56 · 1761 阅读 · 0 评论 -
ApplicationContextAware得到ApplicationContext的原理
Spring中,普通bean可以通过实现ApplicationContextAware得到ApplicationContext,需要重写setApplicationContext和getApplicationContext两个方法。我们知道,是通过setApplicationContext将spring的当前的applicationContext得到,那么spring是什么时候执行setAppli原创 2014-02-28 11:39:44 · 8759 阅读 · 0 评论 -
Connection is read-only. Queries leading to data modification are not allowed
错误原因是原创 2014-05-08 15:45:25 · 19094 阅读 · 2 评论 -
Spring下载excel文件
@Controller @RequestMapping("/d") public class DownLoadAction { @RequestMapping("/download") public void download(HttpServletRequest request, HttpServletResponse response) t原创 2014-05-13 12:23:34 · 3184 阅读 · 0 评论 -
mysql+spring+mybatis实现数据库读写分离[代码配置]
mysql+spring+mybatis实现数据库读写分离[代码配置]原创 2015-02-26 16:50:18 · 41950 阅读 · 7 评论 -
springmvc 上传文件的时候.The request sent by the client was syntactically incorrect
出现这个问题的原因,下面这篇文章已经讲得很清楚的。 http://blog.csdn.net/kunkun378263/article/details/41863101 我遇到的场景是:MultipartFile上传文件,提交表单的时候除了上传文件还有几个数字。我们知道spring servlet在接受前台参数的时候 可以自动进行数据转型。因此在后台接受前台传过来的数字的时原创 2015-03-02 18:21:24 · 2584 阅读 · 0 评论