Wesley13 Wesley13
4年前
java.io.InvalidClassException 异常解决, 实现Serializable接口的注意事项
java.io.InvalidClassException异常解决,实现Serializable接口的注意事项参考文章:(1)java.io.InvalidClassException异常解决,实现Serializable接口的注意事项(https://www.oschina.net/action/GoToLink?urlhtt
Stella981 Stella981
4年前
HTML5 canvas 在线涂鸦
插件地址http://bencentra.github.io/jqsignature/(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fbencentra.github.io%2Fjqsignature%2F)采用技术jqsignature.m
Stella981 Stella981
4年前
CentOS 6部署监控神器普罗米修斯(详细部署说明)
部署说明:环境说明:组件版本下载地址Prometheus2.6.1https://prometheus.io/download/prometheus(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fprometheus.io%2Fdo
Stella981 Stella981
4年前
Git的使用方法与GitHub项目托管方法
Git的安装Windows上安装Git访问网址:https://gitforwindows.github.io/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgitforwindows.github.io%2F)!(https://osc
Stella981 Stella981
4年前
Linux C编程之七(2) 系统IO函数
一、整体大纲!(https://img2018.cnblogs.com/blog/1447858/201904/1447858201904290901136401333693749.png)二、系统IO函数1\.一些概念  文件描述符   PCB   C库函的IO缓冲区   1)
Stella981 Stella981
4年前
Mycat
Mycat介绍,请戳官网:http://www.mycat.io/官网地址:http://dl.mycat.io/1.6.5/以oracle物理库为例。1、解压安装包tarzxvfMycatserver1.6.5release20171029183033linux.tar.gz!(https:/
Wesley13 Wesley13
4年前
Java IO之NIO原理解析以及代码演示
一、JavaNIO几个核心部分ChannelBufferSelector二、IO和NIO的区别IO基于流(Streamoriented),而NIO基于Buffer(Bufferoriented)在一般的JavaIO操作中,我们以流式的方式顺序地从
Stella981 Stella981
4年前
PetClinic 学习资料
1\.官方教程http://docs.spring.io/docs/petclinic.html(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fdocs.spring.io%2Fdocs%2Fpetclinic.html)1.1请
Wesley13 Wesley13
4年前
PCL可视化点云【颜色特征】
以颜色区别深度为了更加直观的显示点云,将不同的深度值显示为不同的颜色。include<iostreaminclude<pcl/point_types.hinclude<pcl/io/ply_io.hinclude<pcl/visualization/pcl_visualize
你真的了解@Async吗? | 京东云技术团队
开发中会碰到一些耗时较长或者不需要立即得到执行结果的逻辑,比如消息推送、商品同步等都可以使用异步方法,这时我们可以用到@Async。但是直接使用@Async会有风险,当我们没有指定线程池时,他会默认使用其Spring自带的SimpleAsyncTaskExecutor线程池,会不断的创建线程,当并发大的时候会严重影响性能。所以可以将异步指定线程池使用