用了好久一直不知道eclipse中如何实现vs中查找所有引用的功能,今天终于发现了哈哈
选中要查找的方法名,右键->References->Workspace 可以定位到具体的调用位置,快捷键Ctrl+Shift+G,在Search中就会出现调用方法
或者是 右键->References->Project/Hierarchy,Workspace搜索的范围>Project>Hierarchy。...
分类:
系统相关 时间:
2014-05-07 05:35:52
阅读次数:
372
今天说点基础的东西,说说如何通过SchemaExport跟Hibernate的配置文件生成表结构。其实方法非常简单,只需要两个配置文件,两个Java类就可以完成。
首先要生成表,得先有实体类,以Person.java为例:
/**
*
* @author Administrator
* @hibernate.class table="T_Person"
*/
public...
分类:
系统相关 时间:
2014-05-07 05:30:24
阅读次数:
358
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)类型错误...
分类:
数据库 时间:
2014-05-07 05:15:51
阅读次数:
332
一 线性表
1.1 数组
1.1.1 Remove Duplicates from Sorted Array
1.1.2 Remove Duplicates from Sorted Array II
1.1.3 Search in Rotated Sorted Array
1.1.4 Search in Rotated Sorted Array II
1.1.5 Median of...
分类:
其他好文 时间:
2014-05-07 04:24:26
阅读次数:
363
【关键的错误信息】: TransactionException: Transaction not successfully started 和一个
doCommit
从该关键字看,是使用Hibernate事务管理器(而不是Spring,下面详细log的绿色字体)处理事务的commit时抛出的,
【具体解决】:
//下面的代码段会报错
Session sessio...
分类:
系统相关 时间:
2014-05-06 22:44:10
阅读次数:
628
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4
5 6 7 0 1 2).
You are given a target value to search. If found in the array retur...
分类:
其他好文 时间:
2014-05-06 19:03:11
阅读次数:
365
最近需要在一个jsp页面上面遍历出多个图片,平时做的比较多的是stringinteger等类型的遍历,图片是二进制的与原来常用的类型有很大的不同。BBFSeal.javapublicclassBBFSeal{privateBlobcontent;privateStringid;privateStringname;privateBBFUseruser;privateBlobp_w_picpathSe..
分类:
Web程序 时间:
2014-05-06 17:51:09
阅读次数:
301