自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

厚积薄发的博客

一个热爱技术的程序员

  • 博客(23)
  • 资源 (1)
  • 收藏
  • 关注

原创 tomcat maxpoolsize

https://www.cnblogs.com/byteworld/p/7986394.html

2019-03-31 19:51:59 410

原创 kafka window10 安装

1.zookeeper 安装2.kafka安装 window10 kafka 2.11.kafka 服务启动bin\windows\kafka-server-start.bat config\server.properties2.创建topicbin\windows\kafka-topics.bat --create --zookeeper localhost:2181 -...

2019-03-31 10:41:28 174

原创 swagger2

https://zed058.cn/code/dev/springboot-05Swagger%E6%A1%86%E6%9E%B6.html#_1%E3%80%81%E6%B7%BB%E5%8A%A0%E4%BE%9D%E8%B5%96

2019-03-26 09:28:20 164

原创 tomcat 启动,停止

https://www.cnblogs.com/starlightfu/p/4919470.html

2019-03-25 17:11:30 360

原创 文件创建多级目录

文件上传多级目录https://blog.csdn.net/myuhua/article/details/82223131

2019-03-22 09:59:20 587

原创 springboot 整合redis

1.导入pom文件 <!-- 整合redis --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</arti...

2019-03-21 09:18:19 114

原创 大数据开发文档

https://www.cnblogs.com/chenmingjun/p/10545638.html#hcentos68python27

2019-03-20 21:58:21 1847

原创 mybatis pagehelper 插件

pagehelper 插件pom.xml&lt;!--mybatis分页插件--&gt; &lt;dependency&gt; &lt;groupId&gt;com.github.pagehelper&lt;/groupId&gt; &lt;artifactId&gt;pagehelper-spring-boot-start...

2019-03-15 15:08:52 125

原创 springboot 打包

cd 到有pom文件的目录mvn cleanmvn package -Dmaven.test.skip=true

2019-03-15 13:49:33 150

原创 virtual box 报错

https://blog.csdn.net/zp_00000/article/details/70207445

2019-03-15 00:18:20 190

原创 java 对象转化为map

1.利用fastjson 把对象转化为map&lt;!-- https://mvnrepository.com/artifact/com.alibaba/fastjson --&gt; &lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifa...

2019-03-11 22:50:46 19122 1

原创 随笔

专注一门语言,一种数据库,一种消息队列,深入的研究它.

2019-03-11 09:50:39 64

原创 工厂设计模式

学习笔记工厂设计模式:解决的问题是项目的实例化问题。提取对象的实例化部分放在一个工厂中,创建对象的过程与主程序的依赖关系太大,实现创建对象的过程与主程序的解耦。简单工厂模式工厂方法模式抽象工厂模式案例:一个披萨项目的方案设计披萨项目:要方便披萨品种的扩展,要便于维护,要能运行时扩展每个披萨都有四个步骤开放封闭原:对扩展开放,对修改封闭披萨族的设计:创建...

2019-03-09 22:07:14 160

原创 git 建立本地与远端的连接

https://www.cnblogs.com/bluestorm/p/6252900.htmlgit branch --set-upstream-to=origin/dev建立本地与远端的连接

2019-03-08 11:11:21 447

原创 mybatis多数据源配置

https://blog.csdn.net/qq_38380025/article/details/84636408

2019-03-06 12:43:09 71

原创 策略模式

策略模式的注意点:1.分析项目中变化的部分和不变得部分2.多用组合少用继承,用行为类的组合,而不是行为的继承.1.例子 模拟鸭子的游戏2.项目的新需求3.使用oo原则解决项目新需求的不足4.使用策略模式解决项目新需求5.重新设计模拟鸭子的项目6.总结策略模式的定义初始的鸭子有两个行为 会叫和会游泳 display 展示头的颜色不同...

2019-03-05 11:41:08 161

原创 springboot 整合druid

pom.xml 文件 &lt;!-- https://mvnrepository.com/artifact/com.alibaba/druid --&gt; &lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifactId&gt;druid&...

2019-03-04 12:11:10 101

原创 springboot 整合shiro

github 地址 : git@github.com:houjibofa2050/springboot_shiro.git

2019-03-04 11:30:10 72

原创 github

1.create a new repository on the command lineecho "# springboot_test01" &gt;&gt; README.mdgit initgit add README.mdgit commit -m "first commit"git remote add origin git@github.com:houjibofa2050...

2019-03-03 11:04:54 64

原创 shiro login 源码分析

https://www.cnblogs.com/jkavor/p/7405004.html优秀博客http://blog.liuyanzhao.com/article/9224

2019-03-02 20:07:32 439

原创 springboot 下的template 下的html 如何实现访问

springboot 下的template 下的html 如何实现访问?springboot 下的template 下的html页面,不能直接访问,可以通过controller 实现跳转。

2019-03-02 17:44:29 3418 2

原创 springboot devtools 自动化部署

https://www.cnblogs.com/yangxiaomei/p/9608029.html

2019-03-02 14:04:45 153

原创 非比较排序算法(计数排序,基数排序,桶排序)

非比较排序算法(计数排序,基数排序,桶排序)

2019-03-01 09:46:36 164 1

matlab入门

matlab基础在线性代数中的运用,很有价值。

2015-07-21

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除