java 相关资料网址

跳一跳:https://www.cnblogs.com/fakeCoder/p/8177973.html 

        http://blog.csdn.net/shi4862758/article/details/78951269

jvm系列文章:https://blog.csdn.net/junehappylove/article/details/72963252

dubbo中文官网:http://dubbo.apache.org/en-us/docs/user/quick-start.html
dubbo源码解析:https://blog.csdn.net/manzhizhen/article/details/52606730

jstorm 与 storm https://blog.csdn.net/jinfeiteng2008/article/details/53487388

jstorm github:https://github.com/alibaba/jstorm/

jstorm中文文档:https://github.com/alibaba/jstorm/wiki/JStorm-basics-in-5-min

 

springboot整合redis:https://blog.csdn.net/yangliuhbhd/article/details/80605337

springboot整合redis集群(哨兵模式改配置文件参数名称):https://blog.csdn.net/x631617479/article/details/82380530

 

mysql-Innodb事务隔离级别-repeatable read详解:https://blog.csdn.net/dong976209075/article/details/8802778

Mysql事务隔离级别与锁:https://blog.csdn.net/endlu/article/details/51531397

java7 / java8      concurrentHashMap HashMap  相关文章:http://www.importnew.com/28263.html  https://blog.csdn.net/zguoshuaiiii/article/details/78495332

史上最简单的 IntelliJ IDEA 教程:https://blog.csdn.net/qq_35246620/article/details/61191375

.。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

RSA示例:https://blog.csdn.net/mshootingstar/article/details/56496719

var NodeRSA = require('node-rsa');

var key=new NodeRSA({b: 1024});

key.setOptions({encryptionScheme: 'pkcs1'})
key.importKey("-----BEGIN PUBLIC KEY-----\n"+publicKeyStr+"-----END PUBLIC KEY-----","pkcs8-private")
var x=key.encrypt(str, 'base64');
console.log(x)
--------------------- 

rsa对应前端nod文档:https://blog.csdn.net/qq_39791705/article/details/79567410

。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

 

 

Mybatis配置详解: https://www.yiibai.com/mybatis/mybatis-one2many.html

 

四种常见的 POST 提交数据方式对应的content-type取值:https://www.cnblogs.com/wushifeng/p/6707248.html        

纯js实现最简单的文件上传(后台使用MultipartFile):

https://www.cnblogs.com/007sx/p/7520529.html

motan springboot整合快速开启 : https://github.com/weibocom/motan/blob/master/docs/wiki/zh_quickstart.md

Zookeeper  开放源码的分布式应用程序协调服务 : https://www.cnblogs.com/jxwch/p/6433310.html

虚拟机调优:http://unixboy.iteye.com/blog/174173/

linux jdk安装;http://blog.sina.com.cn/s/blog_616d29fc01011zdf.html
navicat for mysql 导出数据字典:http://blog.itpub.net/15498/viewspace-2134152

内存溢出:http://blog.csdn.net/ye1992/article/details/9344807

 

 

rabbit安装:http://www.cnblogs.com/kick/p/6357673.html    http://blog.csdn.net/ffggnfgf/article/details/50554327
rabbit详解:  http://blog.csdn.net/column/details/rabbitmq.html   http://blog.csdn.net/younger_z/article/details/53243990      http://blog.csdn.net/congcong68/article/details/39693115

 

 

maven 仓库:http://maven.outofmemory.cn/com.rabbitmq/rabbitmq-client/1.3.0/

图片上传到服务器:nfs    /  fastdfs+nginx  http://www.cnblogs.com/mafly/p/fastdfs.html

fastdfs集群:https://www.cnblogs.com/cnmenglang/p/6731209.html

微信公众平台开发者文档:  https://mp.weixin.qq.com/wiki/11/0e4b294685f817b95cbed85ba5e82b8f.html

微信公众平台开发者文档:  https://mp.weixin.qq.com/wiki/11/0e4b294685f817b95cbed85ba5e82b8f.html

 



//插入语句 返回自增主键  增加如下配置
<insert id="add" parameterType="vo.Category" useGeneratedKeys="true" keyProperty="id">

update/delete,返回值是:更新或删除的行数;无需指明resultClass;但如果有约束异常而删除失败,只能去捕捉异常。
增加表字段
alter table [表名] add 字段名 text [null] 增加备注型字段;

ALTER TABLE u_company ADD abc  DECIMAL(10,2) DEFAULT '0.00' COMMENT '你好啊';    
删除表字段
alter table u_company DROP COLUMN abc;
修改表字段注释
ALTER table table_name MODIFY `column_name` datetime DEFAULT NULL COMMENT '这是字段的注释'
删除字段
alter table pdt_specvalue DROP COLUMN specification1;

 

MQTT资料:http://www.jianshu.com/p/047781a5dc36  

http://www.myexception.cn/mobile/829554.html 

apollo.xml/// : http://activemq.apache.org/apollo/documentation/user-manual.html#Message_Stores

 

emqtt:::::::::http://docs.emqtt.cn/zh_CN/latest/  

emqttd安装:http://blog.csdn.net/laughing_cui/article/details/53322790 

http://blog.csdn.net/wuyinxian/article/details/38826259

mqtt协议详解:http://www.360doc.com/content/16/0715/11/478627_575670034.shtml
apollo linux 安装: http://blog.csdn.net/wfzczangpeng/article/details/54908917



NFS配置centos6:http://blog.csdn.net/shenbml/article/details/52572944
NFS 相关权限centos7 :http://www.linuxidc.com/Linux/2017-06/144467.htm

阿里大鱼短信开发平台:http://www.alidayu.com/center/application/test?spm=a3142.8062971.2.d21.24605086In4NPl

java poi  : http://www.yiibai.com/apache_poi/apache_poi_core_classes.html   excel设置

linux mysql安装:https://blog.csdn.net/tzw_user/article/details/78720401?locationNum=11&fps=1

时间格式 mysql : http://www.jb51.net/article/20550.htm
linux修改mysql密码:https://zhidao.baidu.com/question/985146735009761259.html


tomcat启动慢
修改catalina.sh  添加 -Djava.security.egd=file:/dev/./urandom
JAVA_OPTS="-Djava.awt.headless=true -Djava.security.egd=file:/dev/./urandom" #启动参数


服务器环境搭建:jdk安装 方法二 :http://www.mamicode.com/info-detail-613410.html
nginx安装:http://www.runoob.com/linux/nginx-install-setup.html




数据库备份 :https://www.cnblogs.com/kissdodog/p/4174421.html
https://jingyan.baidu.com/article/9f7e7ec0b0c1a36f28155432.html


linux redis 安装 http://www.runoob.com/redis/redis-install.html

linux redis 启动配置:http://www.cnblogs.com/pqchao/p/6549510.html

https://zhidao.baidu.com/question/2015130183731192028.html

linux redis 配置文件说明 : https://www.cnblogs.com/kreo/p/4423362.html


ScheduledExecutorService定时周期执行指定的任务 :http://blog.csdn.net/tsyj810883979/article/details/8481621
注解实现定时任务 @Scheduled : http://www.cnblogs.com/kxxiang/p/4297535.html


im4java-ImageMagick图片压缩处理 工具安装 :http://www.lao8.org/article_1698/imagemagick_linux.html
im4java-ImageMagick图片压缩处理  :http://blog.csdn.net/kenhins/article/details/70229495

图片压缩 linux:http://blog.csdn.net/blackonline/article/details/61195842
 

sftp 环境搭建 :http://blog.csdn.net/lxhjh/article/details/51033774
文件加密上传:sftp 详解: http://www.cnblogs.com/longyg/archive/2012/06/25/2556576.html
文件加密下载:sftp 详解: http://www.cnblogs.com/longyg/archive/2012/06/25/2561332.html


五种方式获取proprities 文件数据  :http://www.cnblogs.com/hafiz/p/5876243.html

linux 防火墙 开放端口:http://www.cnblogs.com/pizitai/p/6518987.html

linux 建立快捷方式命令 ln -s  即软连接  tomcat默认不允许访问软连接     tomcat安装目录 / conf目录下的:context.xml文件
       在 <Context />; 里面加上 allowLinking="true" 属性就可以了。


集成支付宝收款接口  网址:https://openhome.alipay.com/platform/detailApp.htm?tab=devGuide&appId=2017103009618041#rsa
当面付 : https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.Snf3Kh&treeId=193&articleId=105322&docType=1
参考资料 : http://blog.csdn.net/pondbay/article/details/52330990   http://blog.csdn.net/qukaiwei/article/details/53925799

微信当面付接口 :https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_3
参考资料 :https://www.2cto.com/kf/201606/514199.html


python:注册 激活http://idea.lanyus.com/

Java的oauth2.0 服务端与客户端的实现 :http://blog.csdn.net/jing12062011/article/details/78147306

关于缓存的系列简介 : http://carlosfu.iteye.com/blog/2269678

 

向maven仓库中手动安装本地jar的三种方法:http://blog.csdn.net/superit401/article/details/51567646

 

利用JAXB对java对象和xml互转 :https://blog.csdn.net/junehappylove/article/details/79692824

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值