该文被密码保护。 阅读全文
摘要:
#Spring Security <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> Spring B 阅读全文
摘要:
基于Spring5.0和SpringBoot2.0,非阻塞API,支持WebSockets Route(路由):Predicate(断言) + Filter(过滤器) 集成动态路由、熔断器、限流、DiscoveryClient、路径重写 client --> Spring Cloud Gateway 阅读全文
摘要:
##keytool 基于jdk的证书证书工具,位置<JAVA_HOME>\bin\keytool.exe 管理私钥仓库(keystore)和与之相关的X.509证书链(用以验证与私钥对应的公钥) 常用命令 // keytool // keytool -genkeypair -? -certreq 生 阅读全文
摘要:
#Swagger2 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> 阅读全文
摘要:
Koa:next generation web framework for node.js 三行代码架设一个HTTP服务 const Koa = require('koa'); const app = new Koa(); app.listen(3001); ##Context Koa提供一个Con 阅读全文
摘要:
基础 开源大数据计算引擎,支持批处理和流处理 Spark核心:RDD,Flink核心:Stream Spark微批处理、秒级,Flink流式计算、毫秒级 性能优势 灵活窗口 Exactly once语义保证 阅读全文
摘要:
"C 进阶系列 WebApi" "WebApi服务监控|log4net" ★₯₰☆ Jil引入 "参考" 阅读全文
摘要:
YAML支持3种格式: 格式: (注意空格),支持流式语法 基础参见: "yaml入门示例" 阅读全文
摘要:
JDK Timer,Java自带定时任务类,使用较少。 SpringBoot 启动类上加注解 即可开启SpringBoot定时任务。 定时任务配置 Quartz SpringBoot V2.0以后版本,直接引入Quartz调度框架启动器 阅读全文
摘要:
##注解 @SpringBootApplication:@Configuration + @EnableAutoConfiguration + @ComponentScan @EnableAutoConfiguration:自动配置springboot @ComponentScan:自动扫描和装配所 阅读全文
摘要:
★₯₰☆ 电梯调度 "几种算法的简单思考..." ★₯₰☆ ★₯₰☆ ★₯₰☆ 阅读全文
摘要:
xshell "安装和使用" 阅读全文
摘要:
##初识 异步除了用委托delegate,Begin/EndInvoke外,还可以用Task //直接实例化:手动Start var task1 = new Task(() => { ... }); task1.Start(); //工厂创建:直接执行 var task2 = Task.Factor 阅读全文
摘要:
jdbc 首先配置maven包 注意pom.xml中配置结点 针对不同的数据库,引入对应的包:SqlServer ,DB2 ,以SqlServer为例 在 目录下新建接口文件 同时在 目录下新建xml文件 数据源类和工厂类配置如下 如需事务操作,上述配置类中分别新增 相关疑问可移步: "http:/ 阅读全文