上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 1、applicationContext.xml配置 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass 阅读全文
posted @ 2021-02-26 17:25 Caesar_the_great 阅读(53) 评论(0) 推荐(0) 编辑
摘要: function ClosePage(){ if(navigator.userAgent.indexOf("MSIE") > 0){ if(navigator.userAgent.indexOf("MSIE 6.0") > 0) { window.opener = null; window.clos 阅读全文
posted @ 2021-02-26 17:11 Caesar_the_great 阅读(1175) 评论(0) 推荐(0) 编辑
摘要: 1、分组:Map<String, List<Student>> map = list.stream().collect(Collectors.groupingBy(Student::getClassName)) 解释:对studentList按照班级分组,结果是一个map<List>,map中的ke 阅读全文
posted @ 2021-02-26 16:54 Caesar_the_great 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 1、两种实现方式:1 xml 2 注解 注解式:三个核心注解 (不需要额外配置文件) 类上的:@Component & @EnableScheduling 定时执行的方法上的:@Scheduled(cron="0 0/10 * * * ?") XML式:applicationContext.xml中 阅读全文
posted @ 2021-02-26 16:32 Caesar_the_great 阅读(1523) 评论(0) 推荐(0) 编辑
摘要: 1、-- create database link create database link ORCL.ABC.DEF connect to USER1 using '(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP) (HOST = 阅读全文
posted @ 2021-02-08 15:31 Caesar_the_great 阅读(73) 评论(0) 推荐(0) 编辑
摘要: select prodSeqNo, placeNo, sum(replaceTimes) from (select * from xxx where prodSeqNo in ('xxx','xxx','vvv')) temp where xxx='xxx' and yyy='yyy' group 阅读全文
posted @ 2021-02-08 15:18 Caesar_the_great 阅读(1526) 评论(0) 推荐(0) 编辑
摘要: //定义list集合 List<P> list = Arrays.asList(new P(1, "哈哈"), new P(2, "嘿嘿"), new P(3, "呵呵")); //从list集合中,取出字段name的列表并去重 List<String> names = list.stream(). 阅读全文
posted @ 2021-02-08 15:01 Caesar_the_great 阅读(18586) 评论(0) 推荐(0) 编辑
摘要: 页面打开报错,一直转圈:由于出现错误80020101而导致此项操作无法完成" 1 去掉重复引的js2 去掉中文注释3 去掉注释:<!--xxxxxx > 4 删除重复引入的jquery-x.x.x.js (我的工程里面出现了两个版本的jquery-x.x.x.js & jquery-x.x.x.mi 阅读全文
posted @ 2021-01-14 18:41 Caesar_the_great 阅读(1489) 评论(0) 推荐(0) 编辑
摘要: // 3个人审批,第二个人不同意,则直接返回修改 1 @Override 2 public void comTask(String taskId, String desc, Map<String, Object> variables, String isGo) throws Exception { 阅读全文
posted @ 2020-11-19 14:49 Caesar_the_great 阅读(2102) 评论(0) 推荐(0) 编辑
摘要: ALTER TABLE CHK_TC_PRODSEQ ADD CONSTRAINT FK_TC_OID_PRODSEQ FOREIGN KEY(TECHCHGOID) REFERENCES CHK_TC(OID);ALTER TABLE CHK_REPLACE_BC ADD CONSTRAINT F 阅读全文
posted @ 2020-11-13 23:19 Caesar_the_great 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页