- 浏览: 11836 次
- 性别:
- 来自: 北京
最新评论
文章列表
Struts 2.3 Upgrading Issue
版本升级原因:struts2.0漏洞
http://struts.apache.org/download.cgi#struts221
http://struts.apache.org/release/2.3.x/docs/s2-014.html
升级方法和问题:
https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=30743764
http://bbs.csdn.net/topics/390598510
http://stackoverflow.com/quest ...
0)BaseAction写了套message处理方法:
/**
* 设定页面显示提示的信息
*
* @param msg
*/
@SuppressWarnings("unchecked")
public void setMessage(String msg) {
Collection<String> messages = this.getActionMessages();
if (messages != null) {
messages.clear();
messages.add(msg);
...
0.为了防止service切面影像hibernate过滤器参数,需声明设定后者初始参数。
<!-- Spring 整合 Hibernate -->
<filter>
<filter-name>hibernateFilter</filter-name>
<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
<init-param>
<par ...
转外刊IT评论:为什么我们要学习Haskell这样的编程语言
摘录:
高阶函数(Higher Order Functions)
在Haskell语言中,最多的被反复使用的函数都是高阶函数(higher order functions)——能以函数作为参数、能返回函数的函数。这使得它们具有固有的灵活性。下面是一个不太灵活的函数:它计算一个数组里等于某个值的元素的个数。
// 不灵活
function countMatching(array, value) {
var counted = 0
for (var i = 0; i < array.length; i++) { ...
1.先看问题,在div下追加一个img,结果IE9-时显示图片没有置顶,如附件ng.jpg
2.解决办法是给img加个div然后让img的位置绝对化到左上即可:
<div style="float: left; position: relative;">
<img style="position: absolute;" src="/images/bread_crumb/bread_crumb_foot.png" />
</div>
3.修改后效果如附件ok.jpg
感谢:htt ...
1.先来看这两个核心兄弟方法。
/**
* 分页查询函数
*
* @param hql
* @param pageNo
* 页号,从1开始
* @param pageSize
* 每页尺寸
* @param values
* @return 总记录数和当前页数据的Page对象。
*/
@SuppressWarnings("unchecked")
public Page superPagedQuery(String hql, int pageNo, int pa ...
0.建表语句无私奉上
-- Create table
create table M_ORG
(
ORG_ID VARCHAR2(32) not null,
SHORT_NAME VARCHAR2(50),
NAME VARCHAR2(100) not null,
FULL_ID VARCHAR2(320),
FULL_NAME VARCHAR2(500) not null,
ENAME VARCHAR2(200),
ORG_CLASS C ...
如题,对于jq-grid的colModel属性key有关说明:
http://www.secondpersonplural.ca/jqgriddocs/_2eb0fihps.htm
摘抄如下:
In case if there is no id from server, this can be set as as id for the unique row id. Only one column can have this property. If there are more than one key the grid finds the first one and the second i ...