01 2019 档案

identityserver4 代码系列
摘要:链接:https://pan.baidu.com/s/1ePLwUxGpIPObwA8nnfDT9w 提取码:gr0x 阅读全文

posted @ 2019-01-31 17:52 听哥哥的话 阅读(108) 评论(0) 推荐(0)

动态iframe 分享
摘要:function createIframe() { var i = document.createElement("iframe"); i.src = "/RSK/RskBookFilterManage.aspx?_method=filterContent4RiskBook&riskBookId=" + UTIL.getUr... 阅读全文

posted @ 2019-01-29 14:54 听哥哥的话 阅读(153) 评论(0) 推荐(0)

递归树 查找路径
摘要:using System; using System.Collections.Generic; using System.Text; namespace ConsoleApp3 { public class ThreeNode { public ThreeNode() { ChildList = new List(); ... 阅读全文

posted @ 2019-01-29 10:47 听哥哥的话 阅读(237) 评论(0) 推荐(0)

identityserver4中文文档
摘要:http://www.identityserver.com.cn/ 阅读全文

posted @ 2019-01-20 12:40 听哥哥的话 阅读(139) 评论(0) 推荐(0)

java任务中嵌套任务
摘要:实际上嵌套任务没什么稀奇,原理与上一篇差不多,,可先看这个https://www.cnblogs.com/kexb/p/10228422.html package com.hra.riskprice; import com.hra.riskprice.SysEnum.Factor_Type; import com.hra.riskprice.pojo.RskFactor; import ... 阅读全文

posted @ 2019-01-06 13:31 听哥哥的话 阅读(687) 评论(0) 推荐(0)

java 给任务传递参数
摘要:之前https://www.cnblogs.com/kexb/p/10228369.html没有参数,这里介绍参数什么传入 package com.hra.riskprice; import com.hra.riskprice.SysEnum.Factor_Type; import com.hra.riskprice.pojo.RskFactor; import com.hra.riskpri... 阅读全文

posted @ 2019-01-06 13:17 听哥哥的话 阅读(822) 评论(0) 推荐(0)

java 线程池简单例子
摘要:package com.hra.riskprice; import com.hra.riskprice.SysEnum.Factor_Type; import com.hra.riskprice.pojo.RskFactor; import com.hra.riskprice.service.impl.RskFactorBulkMapper; import org.springframewor... 阅读全文

posted @ 2019-01-06 12:50 听哥哥的话 阅读(611) 评论(0) 推荐(0)

java 大任务分解成小任务 fork/join
摘要:https://blog.csdn.net/weixin_41404773/article/details/80733324目标求 0+1+2+3+4+5+....+1000 初始 start=0 ,end=1000 middle=(start+end)/2=500 RaskDemo left = new RaskDemo(start, middle); RaskDemo right ... 阅读全文

posted @ 2019-01-06 10:58 听哥哥的话 阅读(568) 评论(0) 推荐(0)

导航