本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
给shell脚本传参数Passing arguments to a shell script
Simple explanation
$0 is the name of the command
$1 first parameter
$2 second parameter
$3 third parameter etc. etc
$# total number of parameters
$@ all the parameters will be listed
Passing argument ...
过滤有效查询条件的好方法
在工作中经常遇到明细查询,前段有很多查询条件,但是不是每次所有条件都录入,这样就用到了我下边的方法,用于解决前端查询条件过多,并且不好判断哪些是有效(输入即为有效)的查询条件。首先用一个DTO来接收所有条件(包括录入和未录入的),之后再用下面通过方法来过滤这个DTO,把有效的条件放在Map中返回。
DTO就是简单的bean对象,这里不写了。把处理方法贴出来,在main方法中有具体使用方法 ...
freemarker访问request session Application parameter对象
struts2 freemarker request session parameter
使用Request里的Attribute值最简单的方法就是直接${AttributeName}或者安全一点:${AttributeName!"default Value"}
1.取Application范围的对象
xml 代码
1. <#if Application ...
MYBATIS 的parameter
Parameter 1. 传入简单类型
JAVA代码:
public User get(Long id) {
return (User) getSqlSession().selectOne("com.liulanghan.get" , id);
}
MAPPER :
<select id="findUserLis ...
struts2的参数传入方式
struts2有三种方式传入参数,一种是直接指定参数,第二种是类对象法,第三种是域模型法。
值得注意的是,直接参数需要指定set方法(我的测试时不需要get方法,但有人介绍两者都需要);类对象法确定是需要get方法和set方法,这里有点突破常规理解,因为有set方法就应该够了的。
三种方式详见:http://blog.csdn.net/meaijojo/article/det ...
jdk1.5以上方法动态接收参数
public class DynamicParameterTest {
/**
* <h3>动态接收参数方法</h3>
*
* @param Object
* ... args动态参数数组
*/
static void parameterMethod(Object... args) {
System.ou ...
ECSide标签属性说明之<ec:parameter>
<ec:parameter>
为列表所在表单添加属性.属性将以<input type=hidden name= value=>形式加入到form内
◆ 属性: name
描述:
属性的名字
◆ 属性: value
描述:
属性的值