Easter79 Easter79
3年前
springBoot配置activeMq点对点模式消费信息以及独占模式消费如何设置
1、在pom文件中引入对应jar包<!activeMQstart<dependency<groupIdorg.springframework.boot</groupId<artifactIdspringbootstarteractivemq</artifactId
Wesley13 Wesley13
3年前
RAC环境单实例启动数据库收到ORA
     在RAC环境中,如果你在没有启动节点的集群服务的情况下单实例启动数据库,将收到类似如下的报错:\oracle@rhel1u01\$sqlSQL\Plus:Release10.2.0.5.0ProductiononTueApr215:00:272013Copyright(
Easter79 Easter79
3年前
SpringBoot系列(九)单,多文件上传的正确姿势
SpringBoot系列(九)分分钟解决文件上传往期推荐SpringBoot系列(一)idea新建Springboot项目(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cnblogs.com%2Fswzx1213%2Fp%2F12345330.html)
可莉 可莉
3年前
219. 单页应用 会话管理(session、cookie、jwt)
原文链接:https://github.com/ly525/blog/issues/219(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fly525%2Fblog%2Fissues%2F219)关键字:httponly,cookie,se
Stella981 Stella981
3年前
SpringBoot系列(九)单,多文件上传的正确姿势
SpringBoot系列(九)分分钟解决文件上传往期推荐SpringBoot系列(一)idea新建Springboot项目(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cnblogs.com%2Fswzx1213%2Fp%2F12345330.html)
Stella981 Stella981
3年前
219. 单页应用 会话管理(session、cookie、jwt)
原文链接:https://github.com/ly525/blog/issues/219(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fly525%2Fblog%2Fissues%2F219)关键字:httponly,cookie,se
Stella981 Stella981
3年前
OpenCV仿射变换+投射变换+单应性矩阵
OpenCV仿射变换投射变换单应性矩阵(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.cnblogs.com%2Fwqj1212%2Fp%2F3915859.html)
Stella981 Stella981
3年前
SDWebImage缓存图片的机制
以最为常用的UIImageView为例:1.1、UIImageViewWebCache:  setImageWithURL:placeholderImage:options: 先显示placeholderImage,同时由SDWebImageManager根据URL来在本地查找图片。2.2、SDWebImageMana
Wesley13 Wesley13
3年前
Java 工厂方法模式
在工厂对象上调用创建方法,生成接口的某个实现的对象通过这种方式,接口与实现分离方法接口/方法接口/publicinterfaceService{voidmethod1();voidmethod2();}