上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页
摘要: https://www.cnblogs.com/wuyifu/p/3705206.html Tomcat Xms Xmx PermSize MaxPermSize 区别 及 java.lang.OutOfMemoryError: PermGen space 解决 解决方案 在 catalina.ba 阅读全文
posted @ 2018-05-17 09:30 aLa神灯 阅读(638) 评论(0) 推荐(0) 编辑
摘要: 只需要设置服务器上win用户的登录用户和密码就行了 阅读全文
posted @ 2018-05-15 11:25 aLa神灯 阅读(246) 评论(0) 推荐(0) 编辑
摘要: /** * 更新clob数据类型的值 * @param columnName * @param lids * @param para * @return */ public static boolean executeClobSQL(String columnName,String lids,String para){ ... 阅读全文
posted @ 2018-05-09 10:21 aLa神灯 阅读(788) 评论(0) 推荐(0) 编辑
摘要: CREATE OR REPLACE PROCEDURE update_log_proc(plids IN VARCHAR2,pparas IN NCLOB,msg IN NCLOB) AS BEGIN UPDATE g3_log_info SET paras=pparas,xml_data=msg WHERE lids=plids; END; 数据库执行: execute update_lo... 阅读全文
posted @ 2018-05-09 10:18 aLa神灯 阅读(453) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zjrbiancheng/article/details/6253232 概念: VO(View Object):视图对象,用于展示层,它的作用是把某个指定页面(或组件)的所有数据封装起来。 DTO(Data Transfer Object):数据传输对象 阅读全文
posted @ 2018-05-09 08:46 aLa神灯 阅读(589) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/looyo/article/details/6309136 这里面的清理缓存可以理解为hibernate自动执行了一次 session.flush(); 选择什么样的flush mode就是采取对hibernate session采取什么样的数据刷新的策略 阅读全文
posted @ 2018-05-08 18:14 aLa神灯 阅读(412) 评论(0) 推荐(0) 编辑
摘要: /** * * https://blog.csdn.net/zmx729618/article/details/51455051 * * flush() 执行一系列的sql,但不会提交事务 * comit() 先调用flush()方法,然后提交事务. 提交事务意味着对数据库所做的更新会永久保持下来 ... 阅读全文
posted @ 2018-05-08 18:10 aLa神灯 阅读(163) 评论(0) 推荐(0) 编辑
摘要: drop table clobTets create table clobTets( col1 nclob ) select * from clobTets insert into clobTets values('11111') alter table clobTets add (col2 varchar2(4000)) update clobTets set col2 = d... 阅读全文
posted @ 2018-05-07 17:59 aLa神灯 阅读(1973) 评论(0) 推荐(0) 编辑
摘要: /** * * @param inputStream 输入流 * @return 返回数据 */ private static String decompress(InputStream inputStream) { ByteArrayOutputStream bos = new ByteArrayOutputStream(); ... 阅读全文
posted @ 2018-05-07 17:58 aLa神灯 阅读(2149) 评论(0) 推荐(0) 编辑
摘要: USE master; GO CREATE DATABASE libao ON (FILENAME = 'F:\lib\lib.mdf'), (FILENAME = 'F:\lib\lib_1.ldf') FOR ATTACH; GO 阅读全文
posted @ 2018-05-07 17:54 aLa神灯 阅读(618) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 23 下一页