struts2
Mrs陶
虽然路程很痛苦,但是依然坚持前行。。。
展开
-
Struts2中的ModelDriven机制及其运用
为什么需要ModelDriven接口?所谓ModelDriven,意思是直接把实体类当成页面数据的收集对象。比如,有实体类User如下:package cn.com.leadfar.struts2.actions; public class User { private int id; private String username; private Strin转载 2015-03-25 21:40:51 · 358 阅读 · 0 评论 -
strut2.xml中默认配置项全集
# struts.locale=en_USstruts.i18n.encoding=UTF-8### if specified, the default object factory can be overridden here### Note: short-hand notation is supported in some cases, such as "spring"###原创 2015-03-16 22:04:03 · 605 阅读 · 0 评论 -
解决struts2配置文件无提示(myeclipse)
第一步:myeclipse-->window-->preferences-->搜索xml第二步:打开上面带红色下划线的选项:XMLCatalog-->Add第三步:将你的struts.xml中如图所示的地址拷贝第四步:最后点击ok完成配置,现在就可以有提示了原创 2015-03-16 22:25:39 · 618 阅读 · 0 评论 -
Strut2配置文件中的配置项
说明:struts2的默认配置项可以到struts2-core-2.1.8.1.jar中该路径下default.properies找到: struts.devMode" value="true" /> struts.action.extension" value="action" /> struts.ui.theme" value="原创 2015-03-16 21:45:48 · 583 阅读 · 0 评论 -
struts2中的ognl表达式
说明:由于struts2对request进行了再次封装,所以在变量集合的时候可以有如下两种方式//第一种方式: //第二种方式 ${id} ${name} 原因:因为struts2对request再次封装中,当在request中找不到该参数时,struts2将到ValueStack中原创 2015-03-24 23:07:35 · 633 阅读 · 0 评论 -
struts2的ognl表达式二:支持函数使用
不断的学习,不断的进步,今天才知道原来ognl还能支持函数,下面咱们就以具体案例来了解一下:1、页面代码,红色高亮处可以看出在ognl中调用了后台的函数: 导航菜单 function menuClick( menu ){ $(menu).next().toggle(); }原创 2015-04-15 22:27:02 · 561 阅读 · 0 评论