springside
iteye_9855
这个作者很懒,什么都没留下…
展开
-
tomcat启动不了
tomcal启动时报异常description The server encountered an internal error () that prevented it from fulfilling this request.exception org.apache.jasper.JasperException: Unable to read TLD "META-INF/c.tld...2007-01-16 11:53:07 · 209 阅读 · 0 评论 -
SpringSide提供的数据持久层的功能(转载)
在这里,将创建一个简化的用户管理模块,演示怎样利用SpringSide提供的数据持久层的功能,包括怎样通过Hibernate的Annotation来配置多对一映射和多对多映射。大 家都知道,现在最流行用户管理模型的是RBAC,也就是基于角色的访问控制模型,在这种模型中,可以划分多个层次,如用户-角色-资源、用户-角色-权限 -资源、用户-角色-角色组-权限-资源、用户-角色-角色组-权限-操作...2007-01-22 18:30:00 · 116 阅读 · 0 评论 -
Struts2变动和零配置说明
MVC框架最主要的两个功能是页面对象参数与Action Model的转换 与 页面流转控制,我们考察框架时也多从这两点入手。 Struts2模式上的变动: 一、Action 从singleton bean 改为了per request的prototype bean。之前Struts1为了线程安全,action里面没有任何成员变量,在一个处理函数里输入输出都靠requ...原创 2009-11-12 16:04:42 · 127 阅读 · 0 评论 -
架构风格简述
1.概述 技术框架选型以工业化大规模软件开发为原则---主流的选型、适宜团队分工的架构,同时照顾轻量级快速开发的需求,Java版的约定大于配置的风格。SpringSide 3 的进步(京山游侠)2.主要库栈JDK:JDK 5.0/6.0、 UTF-8.IOC container:Spring 2.5.ORM:Hibernate 3...原创 2009-11-12 16:08:05 · 158 阅读 · 0 评论 -
autowire异常的三个情况
2010-3-11 16:06:00 net.sf.ehcache.config.ConfigurationFactory parseConfiguration警告: No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/E:/kenny/...2010-03-11 16:59:44 · 310 阅读 · 0 评论 -
经常报找不到action里的某方法 明明有此方法
2010-03-24 17:47:27,296 [http-8080-2] ERROR [500.jsp] - The list2() is not defined in action class com.opensymphony.xwork2.ActionSupportjava.lang.IllegalArgumentException: The list2() is not defined...2010-03-25 11:03:14 · 1056 阅读 · 0 评论 -
备忘-使用annotation减少spring bean的配置
备忘-使用annotation减少spring bean的配置 收藏发现一篇好文 http://www.ibm.com/developerworks/cn/java/j-lo-spring25-ioc/ 它给出了比本文更详细的说明。springframework 2.5引入了完整的annotaion配置注解,使用这些annotation可以大量的减少bean的定义,也使得程序开发更...原创 2009-08-19 18:04:27 · 117 阅读 · 0 评论