文章列表
今天写了个SSH2的小程序,因为程序小,包名就直接用了org.*。
1.<context:component-scan base-package="org.*"/>导致内存溢出
beans.xml中使用 <context:component-scan base-package="org.*"/>进行自动扫描。
结果程序启动时在加载beans.xml时停顿一会,就报了
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpect ...
一、DelegatingFilterProxy
在Spring中提供一过滤器DelegatingFilterProxy,这个过滤器里没有过滤器的任何逻辑,DelegatingFilterProxy做的事情是代理Filter的方法,从application context里获得bean。这让bean可以获得spring web application context的生命周期支持,使配置较为轻便。 bean必须实现javax.servlet.Filter接口,它必须和filter-name里定义的名称是一样的。
<filter>
<filter-name> ...
一、response对象返回
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("json");
out.flush();
return null;
输入结果: json
二、通过struts返回stream来输出
MVC一直用的是strtus2 mvc,刚刚看完了Spring的mvc annotation。本来打算写一份入门的教程出来的,因为自己也是刚看,还没有在实际在项目中使用过。有很多东西还只处于会用阶段,并没有深入了解。等在项目中使用过后,再重写一份出来吧。
附上我学习的时候找的一些资料。
一、
博客园Edward的基于注解的spring3.0.x MVC学习笔记(现在更新到九章),看完之后用annotation写东西没问题了。
http://www.cnblogs.com/edwardlauxh/category/277224.html
二、
在www.javablog ...
jQuery validate很不错的一个jQuery表单验证插件。升级到了1.9版的后,发现隐藏表单域验证全部失效,网上一搜,也没查到是怎么回事。最后在1.9的changelog里发现了这么一句changelog里* Fixed #189 - :hidden elements are now ignored by defaultignore: ":hidden",ignore: ""就又开始验证隐藏域了
String hql = "Update Threads set lastPost='"+ author + "' ," + "lasttime=DATE_SUB(lasttime,INTERVAL 1 YEAR)" + " where tid="+ tid;
不知道Hql语句写错没有,执行时出错!
org.springframework.orm.hibernate3.HibernateQueryException: unexpected token: 1 near line 1, column 90 [Upda ...