本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
ActionForm乱码的问题
struts1框架做的项目,在后台利用ActionForm来获取form表单的值的时候,显示的是乱码。就是把Form表单的属性都封装在ActionForm中,比如:
public class UserForm extends ActionForm{
private String name;
private int id;
...//相应的get和set方法
}
public Actio ...
jsp:include与struts1.0问题记录,与Action配合使用。
问题描述:
包含jsp:include的页面是通过Action方式跳转,jsp:include的page属性页也设置的是Action方式跳转。
当jsp:include默认flush=false时,页面直接跳转到jsp:include的page属性指定的页面。
当jsp:include=true时,被include的页面位置报错,提示请求已经提交。
原因说明:
关键在struts1.0处理跳转的时候 ...
struts1.2和struts1.3的tiles框架的区别
struts1.3
需要在web.xml文件中加入:
<init-param>
<param-name>chainConfig</param-name>
<param-value>org/apache/struts/tiles/chain-config.xml</param-value> ...
Struts1 : DispatchAction 的使用
今天在看一个 Struts 代码时,发现 Action 类继承的父类为 DispatchAction ,于是找了找资料研究了下 DispatchAction 类,现总结如下:
DispatchAction 是 Struts1.1 中的一个类,它的父类是 Action ,它的作用就在于将多个功能相似的业务逻辑放在同一个 Action 中实现,各个业务逻辑通过传入不同的参数来决定执行哪个操作方法
...
Struts1和Struts2的区别和对比
Struts1和Struts2的区别和对比 【转】
Action 类:
• Struts1要求Action类继承一个抽象基类。Struts1的一个普遍问题是使用抽象类编程而不是接口。
• Struts 2 Action类可以实现一个Action接口,也可实现其他接口,使可选和定制的服务成为可能。Struts2提供一个ActionSupport基类去 实现 常用的接口。Action接口不是必须 ...
struts1x与struts2x的区别
1.struts1的action是单例模式且必须是线程安全的,action的一个实例处理所有请求.
struts2的action对象为每个请求产生一个实例,没有线程安全问题.
struts1的action依赖于servlet api,struts2的action不依赖与容器,允许脱离容器单独测试.
2.struts1的execute方法依赖于servlet api,使得测试要依赖于容器.struts ...
使用strut1架构,表单提交问题
No bean specified
No bean specified java.lang.IllegalArgumentException: No bean specified at org.apache.commons.beanutils.PropertyUtilsBean.getPropertyDescriptor(PropertyUtilsBean.java:751) at org.apa ...
struts1与struts2的区别
1.都是MVC的WEB框架,
2 struts1的老牌框架,应用很广泛,有很好的群众基础,使用它开发风险很小,成本更低!struts2虽然基于这个框架,但是应用群众并多,相对不成熟,未知的风险和变化很多,开发人员相对不好招,使用它开发项目的风险系数更大,用人成本更高!
3.struts2毕竟是站在前辈的基础设计出来,它会改善和完善struts1中的一些缺陷,struts1中一些悬而未决问题在 ...
java.lang.ClassNotFoundException: org.apache.commons.beanutils.Converter
用struts1+jsp开发web端页面时,启动tomcat时报错:
java.lang.ClassNotFoundException: org.apache.commons.beanutils.Converter
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1645)
at ...
struts1 配置初始化参数 init-param
1,设置初始化值
<init-param>元素位于<servlet>元素下面,是用来配置servlet的初始化参数,通过<param-name>来指定参数的名字,<param-value>来指定参数的值,具体的配置方法在web.xml中通过如下的语句配置:
<servlet>
<servlet-name>action& ...
Struts1和Struts2的区别及联系
Action 类: • Struts1要求Action类继承一个抽象基类。Struts1的一个普遍问题是使用抽象类编程而不是接口。 • Struts 2 Action类可以实现一个Action接口,也可实 ...
struts1.2中从一个action跳转到另外一个action
在action的方法的最后,一般情况下都使用return mapping.findForward("xxxxx");
如果想跳转到另外一个action的某个页面,可以这样:
ActionForward actionForward = new ActionForward();
actionForward.setPath("/customer/creditApprMan ...
struts2和strut1有什么区别
Action 类:Struts1要求Action类继承一个抽象基类。Struts1的一个普遍问题是使用抽象类编程而不是接口。Struts 2 Action类可以实现一个Action接口,也可实现其他接口,使可选和定制的服务成为可能。Struts2提供一个ActionSupport基类去实现 常用的接口。Action接口不是必须的,任何有execute标识的POJO对象都可以用作Struts2的Act ...