- 浏览: 49399 次
- 性别:
- 来自: 深圳
最新评论
文章列表
svnkit获取SVN信息
- 博客分类:
- Java
public class SVNOperationServiceBean implements SVNOperationService
{
private final DataVoiceLogger logger = DataVoiceLogFactory.getLogger(getClass());
private SVNRepository repository = null;
@PostConstruct
public void initSVNOperationService()
{
...
DOS命令操作本地任务
- 博客分类:
- DOS
1.查询指定名称的任务信息
tasklist /fo csv | find "psexec.exe"
执行结果:
"psexec.exe","6624","Console","1","5,744 K"
"psexec.exe","11328","Console","1","5,720 K"
...
JAD3.3 for eclipse安装
- 博客分类:
- eclipse
1、将jad反编译工具jad.exe放到jdk安装路径的bin目录下面,jadclipse_版本号.jar放到eclipse的安装目录下的plugins目录下。
2、启动eclipse,打开:Window->Preferences->Java->JadClipse.
Path to decompiler,这里设置反编译工具jad的全路径名,就是第三部jad.exe的路径。
3、 安装完成后,eclipse自动将JadClipse Class File Viewer设置成class文件的缺省打开方式。如果没有默认,可以在Eclipse的Win ...
java运行调用命令或运行其他程序
- 博客分类:
- Java
public void runCommond(String cmd, String dir)
throws InterruptedException, IOException {
Runtime run = Runtime.getRuntime();
Process process = run.exec("cmd /c " + cmd, null, new File(dir));
process.waitFor();
process.destroy();
}
//删除SVNTemp目录下history和recent文件夹及子项
runC ...
通过URL绑定参数传递中文出现乱码
- 博客分类:
- Java Web
encodeURI(encodeURI(reqURL))//前台将url编码
后台controller中需要将参数过去后转码
URLDecoder.decode(param,"UTF-8")
eclipse 反编译插件
- 博客分类:
- eclipse
eclipse反编译配置步骤
1、将net.sf.jadclipse_3.3.0.jar复制到 eclipse/plugin文件夹下面。
2、重启 eclipse,
3、将 jad.rar解压,将jad.exe的全路径设置到 Window->Preferences->Java->JadClipse-->Path to decompiler中,
4、directory of temporary files随便写个临时路径即可。
Spring配置数据源
- 博客分类:
- Spring
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>/WEB-INF/db-dataSource.properties</value>
</property>
</bean>
<!-- config data source -->
<bean id=& ...
BaseDao常用方法封装
- 博客分类:
- Java Web
public class Dao extends HibernateDaoSupport{
public <T> List<T> loadAll(Class<T> clazz){
return (List<T>)getHibernateTemplate().loadAll(clazz);
}
public <T> T load(Class<T> clazz,Serializable id){
return (T) getHibernateTemplate().load(clazz, i ...
BaseAction常用方法封装
- 博客分类:
- Java Web
public class BaseAction extends ActionSupport{
private static final long serialVersionUID = 1348913248;
public Map<String, Object> getSession(){
return ActionContext.getContext().getSession();
}
public Map<String, Object> getContextMap(){
return ActionContext.getCont ...
public class ListTest {
long startTime;
long endTime;
public void testArrayList(){
List<String> list = new ArrayList<String>();
list.add("zhangsan");
list.add("lisi");
list.add("admin");
list.add("custom");
startTime = S ...
public class MapTest {
long startTime;
long endTime;
public void testHashMap(){
Map<String,String> map = new HashMap<String, String>();
System.out.println("************HashMap开始测试*************");
map.put("zhangsan", "23岁");
map.put(&q ...
JS动态给URI中添加参数
- 博客分类:
- JavaScript
<SCRIPT LANGUAGE="JavaScript">
<!--
var parms = new Array({name:'ID',value:"2"},{name:'name',value:"zhangsan"})
function test(){
var uri = setParam("pduadmin/pdu/updateGuideGroup.do",parms);
alert(uri);
}
function setParam(uri,parms){
var ...
经常用的几个Icon网站,虽然不是新鲜贴,但还是放了出来1、iconfinder,http://www.iconfinder.com/,比较全面的ICON网站,有154600多个图标,内容相当丰富;2、findicons,http://findicons.com/,名字和前面的差不多,号称“全球所以的图片都在您指尖”,这个口号霸气。
- 2012-04-28 22:51
- 浏览 735
- 评论(0)
1.读取时机不同(当lazy=true的时候) load是采用延迟机制(load语句不读库,等使用非主键时才去读库),而get不采用延 迟机制(get语句时马上读库);2.搜索不到数据时的情况 当搜索的数据不存在的时候,load依然会返回一个对象,在你使用该对象的非主键数 据时,会抛出异常; 当搜索的数据不存在的时候,get会返回一个null; 其实看似load到用的时候才去读数据库,比get要节省资源,但还没深入研究过。3.get不支持lazy load支持lazy
工作两年了,很少写博客,两年来也很少学习新的东西,反思过后制定学习计划。决定将学习过的技术
重新整理,将学习心得记录在博客中,方便以后需要是查阅。若能为他人的学习、工作提供参考,荣幸之至。
如有不足之处还望批正,不胜感激!
总结的内容将不定期更新到博客,具体计划如下:
一、【J2SE篇】java基础课程中级、高级API学习,java5新增特性的在开发中的运用。