- 浏览: 8449 次
最新评论
文章列表
hibernate性能优化的几点建议
1、针对oracle数据库而言,Fetch Size 是设定JDBC的Statement读取数据的时候每次从数据库中取出的记录条数,一般设置为30、50、100。Oracle数据库的JDBC驱动默认的Fetch Size=15,设置Fetch Size设置为:30、50,性能会有明显提升,如果继续增大,超出100,性能提升不明显,反而会消耗内存。
即在hibernate配制文件中进行配制:
1 <property name="hibernateProperties">
2 <props>
3 <prop key="hi ...
先说下设计的数据库吧
url 链接 通过来链接吧内容显示到div中
xuhao 序号 这个值是变化的根据他的顺序来在页面显示拖拽后的div的位置
divId div的id 这个值从添加以后到删除都不会变
lr 位置 左边l 右边r
先不说添加
首先说一下显示
查询左边显示的数据 根据lr添加条件 xuhao排序
查询右边显示的数据 根据lr添加条件 xuhao排序
String hqlL="from Home where lr='l' order by xuhao&quo ...
<input id="idBoxOpen2" value=" 右下角弹窗效果 " type="button" />
<dl id="idBox2" class="lightbox">
<dt><strong>右下角消息框</strong>
<dd><input id="idBoxClose2" value=" 下滚渐隐 " type="button" /> ...
<script type="text/javascript">
var $ = function(id){
return document.getElementById(id);
}
//全选
function checkAll(target) {
var checkeds = document.getElementsByName("b_id");
for (var i = 0; i < checkeds.length; i++) {
...
<script>
function $(id)
{
return document.getElementById(id);
}
var LoginUI = !!window.LoginUI || {};
LoginUI.getViewportWidth = function(){
var width=0;
if(document.documentElement && document.documentElement.clientWidth){
width=document.documentElemen ...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Grid to FormPanel Drag and Drop Example</title>
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css&quo ...
使用Struts2的文件上传控件时,在struts.xml中,将处理上传的action中的fileUpload拦截器的maximumSize参数设置为5000000,上传了一个3M的文件后发现控制台报错,而且提示说文件超过2M。Struts.xml相关配置如下:
<action name="FileUpload&q ...