上一页 1 2 3 4 5 6 ··· 42 下一页
摘要: 阅读 技术内 《微服务设计》√ 《Spring 微服务实战》Chapter 5(每天至少看3章) rpc middleware 《计算机网络自顶向下方法》0% cache middleware 《Redis设计与实现》 0% 《Redis运维实践》 0% mq middleware 学习底层通信用的 阅读全文
posted @ 2019-12-19 22:07 Roni_i 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 搭建自己的终极框架 构建工具 68% Maven, 16% Gradle ; 版本控制系统 68% Git 23% SVN IDE 46% IDEA, 41% Eclipse; Web 框架 43% Spring MVC 4, 29% Spring Boot lombok? spring data 阅读全文
posted @ 2019-12-08 15:43 Roni_i 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 版本不兼容 erl:otp_win64_21.0.1.exe rabbitmq:rabbitmq server 3.8.1.exe(2019.12.06时最新版) 根据官方文档的匹配表:https://www.rabbitmq.com/which erlang.html 可知若erl为21.0.1, 阅读全文
posted @ 2019-12-06 13:43 Roni_i 阅读(643) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-12-02 16:11 Roni_i 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 项目架构(聚合项目,父子模块) src没用,所以删去 选择maven项目,不用勾选模板骨架,直接main方法,因为不用到服务器 顺序是按照:添加pom依赖 接口实现类 配置文件 项目环境 IDE:IntelliJ IDEA15.0.6 JDK:1.8.0_161 项目管理工具:Maven项目(没勾选 阅读全文
posted @ 2019-12-02 11:36 Roni_i 阅读(798) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_16410733/article/details/96423031 阅读全文
posted @ 2019-12-02 01:45 Roni_i 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 基于中医传承辅助平台软件,分析中国期刊全文数据库(CNKI)、万方数据知识服务平台、维普网、中国生物医学文 献数据库(CBM)中以中医药治疗抑郁症的组方用药规律,为进一步挖掘中医药治疗抑郁症及新药研发提供参考。应用中医 传承辅助平台软件 V2. 0,构建中医药治疗抑郁症的方剂数据库,采用软件集成的数 阅读全文
posted @ 2019-11-08 14:05 Roni_i 阅读(87) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2018.cnblogs.com/blog/1184092/201910/1184092-20191023091843472-656339026.png) 阅读全文
posted @ 2019-10-23 09:19 Roni_i 阅读(111) 评论(0) 推荐(0) 编辑
摘要: huZABtwIrp 阅读全文
posted @ 2019-10-05 23:00 Roni_i 阅读(122) 评论(0) 推荐(0) 编辑
摘要: SpringBoot+JDK 8+ MySQL 8 +druid druid spring.datasource.url=jdbc:mysql://localhost:3306/miaosha?serverTimezone=UTC&useUnicode=true&characterEncoding= 阅读全文
posted @ 2019-09-28 23:42 Roni_i 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.可视化界面设置 Run Edit Configuration... 然后设置 2.配置文件设置 打开 IDEA 安装目录,看到有一个 bin 目录,其中有两个 vmoptions 文件 ,需针对不同的JDK进行配置: 32 位:idea.exe.vmoptions 64 位:idea64.exe 阅读全文
posted @ 2019-09-22 21:29 Roni_i 阅读(775) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-09-03 23:58 Roni_i 阅读(2) 评论(0) 推荐(0) 编辑
摘要: XML:Extensible Markup Language,可扩展标记语言,左卫门数据的一种存储格式或用于存储软件的参数,程序解析此配置文件,就可以达到不修改代码就能更改程序的目的。 阅读全文
posted @ 2019-08-23 07:54 Roni_i 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 简介 上网浏览网页,离不开服务器,客户请求页面,服务器响应页面,响应的内容是根据每个web请求来产生动态内容的,其内部即启动多个线程来产生不同内容。这种请求响应的交互,都是基于HTTP协议的。 当然现在随着业务越来越多样化,web服务器变得复杂了,拥有了像缓存、安全和session管理这些附加功能。 阅读全文
posted @ 2019-08-22 20:50 Roni_i 阅读(147) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-08-11 22:00 Roni_i 阅读(4) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-08-04 12:53 Roni_i 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Given an array of n positive integers and a positive integer s, find the minimal length of a contiguous subarray of which the sum ≥ s. If there isn't 阅读全文
posted @ 2019-07-21 20:05 Roni_i 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Given two strings s1 and s2, write a function to return true if s2 contains the permutation of s1. In other words, one of the first string's permutati 阅读全文
posted @ 2019-07-21 19:40 Roni_i 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 问题定义 TCP是一个“流”协议,所谓流,就是没有界限的一长串二进制数据。TCP作为传输层协议并不不了解上层业务数据的具体含义,它会根据TCP缓冲区的实际情况进行数据包的划分,所以 在业务上认为是一个完整的包 ,可能会被TCP拆分成多个包进行发送,也有可能把多个小的包封装成一个大的数据包发送,这就是 阅读全文
posted @ 2019-07-20 17:42 Roni_i 阅读(1921) 评论(0) 推荐(0) 编辑
摘要: 题目描述码队的女朋友非常喜欢玩某款手游,她想让码队带他上分。但是码队可能不会带青铜段位的女朋友上分,因为码队的段位太高(已经到达王者),恐怕不能和他的女朋友匹配游戏。码队的女朋友有些失落,她希望能尽快冲上王者。这个赛季开始了,求胜心切的码队的女朋友想让码队帮她计算一个问题:这个赛季码队的女朋友一共打 阅读全文
posted @ 2019-07-20 15:07 Roni_i 阅读(615) 评论(2) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-07-20 12:44 Roni_i 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 首先想好: 问题要确定、详细 是什么东西不工作了? 现象和结果是什么? 出什么样的错误? 详细的情况是如何的? 问别人之前先问自己一遍,把这些想清楚了再问别人,节省大家的时间。 提问之前自己先研究调查一下 问别人之前最好自己先找找答案。 对于显而易见的问题,不调查一下就随便去问非常招人讨厌,尤其是在 阅读全文
posted @ 2019-07-18 17:15 Roni_i 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 在原字符串中把字符串尾部的m个字符移动到字符串的头部。 java / Definition for singly linked list. public class ListNode { int val; ListNode next; ListNode(int x) { val = x; } } / 阅读全文
posted @ 2019-07-14 18:40 Roni_i 阅读(347) 评论(0) 推荐(0) 编辑
摘要: Given two binary strings, return their sum (also a binary string). The input strings are both non empty and contains only characters 1 or 0. Example 1 阅读全文
posted @ 2019-07-14 15:40 Roni_i 阅读(147) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-07-13 14:24 Roni_i 阅读(3) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 42 下一页