摘要: s使用restemplate调用其它服务时,请求中header中的accept-charset会默认带很多编码,影响效率 如图: springboot中配置restTemplate @Bean RestTemplate restTemplate(){ RestTemplate template = 阅读全文
posted @ 2018-10-10 17:16 youdream 阅读(13892) 评论(0) 推荐(0) 编辑
摘要: 1.maven 项目做聚合时先对父项目编译,然后在编译子项目。2.拦截器,过滤器,监听器 //**spring mvc**//1.controller的参数什么意思?2.RequestParam注解使用,要求参数不能为空(但是可以设置),如何设置默认值,3. modelAndView.setView 阅读全文
posted @ 2018-05-08 14:29 youdream 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 4.0.0 1.7.1 1.5.4 2.4.5 3.8 1.0.3 UTF-8 com.hikvision.finance finance-parent 0.0.1-SNAPSHOT ... 阅读全文
posted @ 2018-05-08 14:13 youdream 阅读(402) 评论(0) 推荐(0) 编辑
摘要: "Effective MySQL之SQL语句最优化" DBA5分钟速成( --测试表 CREATE TABLE IF NOT EXISTS inventory ( id int(11) UNSIGNED NOT NULL AUTO_INCREMENT, supp_id int(11) UNSIGNED NOT NULL DEFAULT '... 阅读全文
posted @ 2018-05-07 11:18 youdream 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 也可以实用后端验证方式 https://blog.csdn.net/datuo/article/details/1393227 https://blog.csdn.net/rchm8519/article/details/45081225 阅读全文
posted @ 2018-05-04 15:16 youdream 阅读(9575) 评论(0) 推荐(0) 编辑
摘要: 1.HPP学习 1.1通信过程 2.Protobuff 学习 protocol buffer 1.google的一种数据交换的格式 2.特点:独立于语言,独立于平台 3.它是一种二进制的格式,比使用 xml 进行数据交换快许多。 可以把它用于分布式应用之间的数据通信 或者 异构环境下的数据交换。 作 阅读全文
posted @ 2018-05-03 17:55 youdream 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 1.下载后解压如图 2.示例 home.thml代码 <!DOCTYPE html><html><!-- head --><head> <meta charset="utf-8"> <title>首页</title> <meta name="renderer" content="webkit"> < 阅读全文
posted @ 2018-04-28 18:39 youdream 阅读(11248) 评论(0) 推荐(1) 编辑
摘要: 说明: 简述 下载 ActiveMQ官网下载地址:http://activemq.apache.org/download.html ActiveMQ 提供了Windows 和Linux、Unix 等几个版本,楼主这里选择了Linux 版本下进行开发。 解压后目录: 目录介绍: bin存放的是脚本文件 阅读全文
posted @ 2018-04-24 17:19 youdream 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 简述: 主要记录一些计算机编程需要的基本概念,为了更好地理解编程中用到的其他概念。 比如要理解hashmap数据结构,就要对数据,链表,取模,位运算有基本的了解 内容: 1:取模,取余 1.1 取模和取余类似,当取模的两个值得富豪相同时,取模和取余得到的值一样;否则相反 1.2 取模的意义何在呢? 阅读全文
posted @ 2018-04-24 09:33 youdream 阅读(242) 评论(0) 推荐(0) 编辑
摘要: List 和 Set 的区别 1.1 list是有序集合(容器)且元素可以重复,输出顺序就是插入顺序;Set是无序集合且元素不可以重复。 1.2 list可以存放多个null;set只可以存一个null 1.3 常用list有ArrayList,LinkedList,vector; ArrayLis 阅读全文
posted @ 2018-04-24 09:31 youdream 阅读(233) 评论(0) 推荐(0) 编辑