`
langzhiwang888
  • 浏览: 182026 次
  • 性别: Icon_minigender_1
  • 来自: 青岛
社区版块
存档分类
最新评论
文章列表
Hibernate视频学习笔记(5)SessionFlush简介   Session flush测试: Session flush方法主要做了两件事情: 清理缓存: 执行SQL: session在什么情况下执行flush 默认在事务提交时 显示的调用flush 在执行查询前,如:iterate 在uuid情况 ...
2009-4-25 8:12:34 org.apache.catalina.core.ApplicationContext log 信息: java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to com.miracle.dm.doc.catalog.model.DocCatalogInfo 原来的查询语句: String sql = "select a.* from tb_doc_catalog a where a.cat_code like '" ...
WebLogic 10.3 安装、配置与管理手册 第一章 WebLogic 10.3 for Win32 §1.1 安装准备  下载WebLogic10.3 for x86 Win32安装文件;  安装Windows XP Sp2或Windows 2003 Server;  检查操作系统的磁盘空间,确保空闲空间在2G以上。 §1.2 安装过程 §1.2. ...
* ** 常见排序算法比较 */ #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 10 #define Demo 1 void BubbleSort(int arr[], int n); void SelectSort(int arr[], int n); void QuickSort(int arr[], int n); void PrintArray(int arr[], int n); void Generate ...
package ch01; 2 3public class BubbleSort 4{ 5    6    7    public static void main(String[] args){ 8        int[] values ={ 9                3,1,6,2,9,0,7,4,5 10        }; 11        12        sort(values); 13        for(int i=0; i < values.length; ++i){ 14            15            Syst ...
在web应用中经常需要进行上传的操作,从安全的角度考虑,这个功能一般是需要限制文件的类型的! 通过扩展名获取文件类型是一种很不靠谱的方式。 下面介绍一种较文件扩展名来说可信度更大的方式――文件头信息内容判断!     import java.awt.image.BufferedImage;      import java.io.File;      import java.io.FileInputStream;      import java.io.FileNotFoundException;      import java.io.IOException ...
ImageInputStream iis = ImageIO.createImageInputStream(new File(                "E:/1.jpg"));        Iterator iter = ImageIO.getImageReaders(iis);        if (!iter.hasNext()) {            System.out.println("null");        }else{            ImageReader reader = (ImageReader) iter.n ...
经常看到各大网站(例如:天涯,网易,阿里巴巴)的底部会有一个能够固定的漂浮条,该效果可以用js实现,但是今天新鲜代码站推荐一个纯css方法,更加简洁方便。 css代码如下: body { background-image:url(text.txt); /* for IE6 */ background-attachment:fixed; } #bottomNav { background-color:#096; z-index:999; position:fixed; bottom:0; left:0; width:100%; _position:absolute; /* for ...
经常看到各大网站(例如:天涯,网易,阿里巴巴)的底部会有一个能够固定的漂浮条,该效果可以用js实现,但是今天新鲜代码站推荐一个纯css方法,更加简洁方便。 css代码如下: body { background-image:url(text.txt); /* for IE6 */ background-attachment:fixed; } #bottomNav { background-color:#096; z-index:999; position:fixed; bottom:0; left:0; width:100%; _position:absolute; /* for ...
1. /**   2.* 向数据库添加一条对应于一个业务对象实例的记录   3.*   4.* @param entity   5.* 业务对象实例   6.      */    7.public Entity create(Entity entity) throws DaoException {    8.try {    9.getHibernateTemplate().save(entity);    10.return entity;    11.} catch (DataAccessException e) {    12.            throw n ...
Lucene 3.0 原理与代码分析 作者: forfuture1978 http://forfuture1978.iteye.com 本系列文章将详细描述几乎最新版本的Lucene的基本原理和代码分析。 http://www.iteye.com - 做最棒的软件开发交流社区 第 1 / 199 页本书由JavaEye提供的电子书DIY功能自动生成于 2010-02-22 目 录 1. Lucene 学习总结 1.1 Lucene学习总结之一:全文检索的基本原理 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...
Global site tag (gtag.js) - Google Analytics