`
kane82
  • 浏览: 25375 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论
文章列表
最近项目中需要对xml文件进行解析!有时候会遇到xml的节点大小写不一致的问题,因此写了个方法把xml文件中的节点全部转为大写的方式,在这里做个备忘。代码如下, public static Element elementToUpper(Element ele){ ele.setName(ele.getNa ...
在网上找了些资料,自己动手写了个行列转换的存储过程。 下面片段为表结构: CREATE TABLE `changeprice` ( `id` bigint(20) NOT NULL auto_increment, `sid` bigint(20) NOT NULL, `datecreated` Date NOT NULL default CURRENT_TIMESTAMP, `price` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 表中插入以下 ...
今天弄了个Apache+tomcat整合,及mod_rewrite的URL重写。记录下作为个备忘: 首先:安装Apache2.2.10及tomcat6.0.15(我安装的版本) 配置Apache:修改conf/httpd.conf文件,增加以下内容(下载mod_jk.so文件,并拷贝到modules文件夹下) # load mod_jk LoadModule jk_module modules/mod_jk.so # Configure mod_jk JkWorkersFile conf/workers.properties JkMountFile conf/uriworker ...
mod_rewrite的讲解非常详细,特此记录下来 http://hedong.3322.org/archives/000342.html
数据库中的表是树结构; <class table="tb_agents" name="com.billing.domain.Agent" > <id name="autoId" type="int" column="autoID"> <generator class="sequence"> <param name="sequence">tb_agents_aut ...
在用Hibernate进行分页时,在进入前5页都很正常。在查询第6页的时候就像死机了一样。怎么也不动。 代码如下: int totalRows = ((Integer)this.getSession().createQuery("select count(*) " + hql).uniqueResult()).intValue(); //查询总页数 PaginationSupport page = new PaginationSupport(arealist, totalRows, currentPage); //实现分页 arealist.add(t ...
Global site tag (gtag.js) - Google Analytics