public ActionResult AdminUserList(UserListModel model) { var pagedList = _userService.SearchAdminUsers(model.PageIndex, model.PageS...
分类:
Web程序 时间:
2014-08-18 23:27:13
阅读次数:
410
Oracle中获取刚刚插入记录的主键值: <insert?id="insertSelective"?parameterType="com.jxxx.p2pp.model.UUserInfo">
????<selectKey?resultType="java.math.BigDecimal"?order="BEFORE"?keyProperty="...
分类:
其他好文 时间:
2014-08-18 22:13:03
阅读次数:
234
UPDATE products SET metatags_title_status = '1',metatags_products_name_status = '0',metatags_model_status = '0',metatags_price_status = '1',metatags_t...
分类:
其他好文 时间:
2014-08-18 16:09:52
阅读次数:
197
1 说明 把excel当成一个数据库,类似于Access数据库来操作。2 源代码2.1 Model层 /// /// 人员信息 /// public class MPerson { /// /// 人员姓名 /// ...
分类:
其他好文 时间:
2014-08-18 10:45:34
阅读次数:
288
目标:学习ASP.NET MVC 和ASP.NET WebForm的不同之处。学习在合适的地方使用ASP.NET MVC。 MVC(Model-View-Controller)结构模式把一个对象分离成3大块:Model(数据模型层),View(视图层),Controller(控制层),ASP.NE....
分类:
Web程序 时间:
2014-08-17 18:25:52
阅读次数:
225
A method is provided for implementing a mandatory access control model in operating systems which natively use a discretionary access control scheme. ...
分类:
数据库 时间:
2014-08-17 16:49:12
阅读次数:
563
强制赋值避免 rule 规则过滤字段。用 setAttributes 可以强制取消 Yii 的安全过滤,只要第二个参数赋值为 false 就好。但是这也只能对这个 Model 生成时就拥有的字段生效,如果要对包括自己定义的所有字段不过滤,还是要定义场景然后在 rule 里指定安全字段比较好。...
分类:
其他好文 时间:
2014-08-16 22:33:31
阅读次数:
316
In the model layer, the Model class is the base class while the ModelBase class is metaclass. They are the entry points of the whole model layer...
分类:
其他好文 时间:
2014-08-16 22:32:31
阅读次数:
282
优点:1、CRUD:代码简洁2、不用配置map3、自带事务方便4、自带IOC5、自带 数据有效性验证缺点:1、自增长(Oracle 一直提示序号不存在,有空继续尝试)2、多条件,直接用 HQL写在类里,或者将条件写在 Model字段定义里,太过硬性3、CRUD 每个出错直接异常,每个语句必须 try...
分类:
其他好文 时间:
2014-08-16 17:02:40
阅读次数:
204
1、问题背景
以下代码运行的结果为:
A、1000 B、999 C、1001 D、0
/**
* 中间缓存变量机制
*/
package com.you.model;
/**
* @author YouHaiDong
*
*/
public class Middle
{
/**
* @param args
*/
public static...
分类:
其他好文 时间:
2014-08-16 16:31:30
阅读次数:
142