自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 资源 (2)
  • 收藏
  • 关注

原创 centos 安装mysql

centos 安装mysql1.安装从网上下载文件的wget命令[root@master ~]# yum -y install wget2.下载mysql的repo源[root@master ~]# wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 3.安装mysql-community-release-el7-5.noarch.rpm包[root@master ~]# rpm -ivh mysql-com

2021-04-19 18:28:50 135

原创 deepin 安装git

deepin 下安装git sudo apt-get install git git --version git config --global user.name "hello" git config --global user.email [email protected] git config --list

2021-01-16 19:17:46 716

原创 deepin安装redis

deepin 下面安装redisPC:/$ sudo apt-get install redis-server/etc/init.d/redis-server start/etc/init.d/redis-server stopredis-cli

2021-01-16 17:09:30 174

原创 deepin 下面安装jdk1.8

deepin 下面安装jdk1.8安装命令sudo apt install -y openjdk-8-jdkjava -version

2021-01-16 17:01:38 271

原创 spring cloud gateway 整合出现的坑

1.整合是出现问题:注:添加的依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> ...

2020-05-06 14:23:16 5267 1

原创 git 常用命令

git常用命令

2019-11-08 19:50:36 166

原创 Eclipse 保存doc 注释的时候,更改默认保存为一行的解决办法

1)亲测可用,这里需要新建模板,不能再之前的模板上面新建。

2019-11-08 15:41:49 244

原创 Spring Boot 整合 Dubbo 和 zookeeper

1)根据 dubbo 官方建议,首先创建一个接口项目,而这个项目只定义接口和实现类 1.1 创建一个 maven工程 ,用来管理所有的maven项目 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xs...

2019-11-07 13:52:31 268

原创 SpringBoot中使用SpringData 整合ElasticSearch之版本号控制

1)创建Spring Boot项目使用的版本号:我这里使用的是2.2.0版本2)在pom文件中引入一下依赖。<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch<...

2019-11-05 12:27:58 937

原创 Spring Boot 整合 Spring Data

创建Spring Boot 工程1)在pom文件中导入依赖<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifact...

2019-11-02 15:32:46 231

原创 Spring Boot 中集成 Mybatis 开启驼峰命名转换

抛出问题1)数据库表:2)实体类属性:@NoArgsConstructor@AllArgsConstructor@Datapublic class Department { private Integer id; private String departmentName;}提出问题:如何在插入字段时,可以使departmentName ------> 转...

2019-11-01 20:13:16 1280

原创 Spring Boot 操作数据库出现 "You must configure either the server or JDBC driver" 的解决方案。

Spring Boot 配置数据库是出现了以下的异常:java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (...

2019-11-01 14:59:09 1652

原创 java中string常用的方法

java中string常用的方法

2019-09-29 16:13:32 151

原创 双重检测加同步代码块(解决缓存穿透的问题)

双重检测加同步代码块(解决缓存穿透的问题)

2019-09-28 21:41:47 276

原创 idea中最好用的插件

idea中最好用的插件(持续更新中)

2019-09-05 11:00:23 6246 1

原创 Java中生成QR Code格式 二维码

1. 生成 QR Code 格式二维码2 .在java中生成

2019-08-25 20:41:09 558

原创 http状态码提示和含义

Http状态码 200 : 表示请求处理完成并成功返回301 : 请求的网页已永久移动到新位置302 : 表示请求需要进一步细化。304 : 属于重定向400 : 客户端请求有语法错误,不能服务器所理解。401 : 请求未经授权404 : 请求资源不存在500 : 表示服务器的资源发送错误。(服务器内部错误)503 : 服务器当前不能处理客户端的请求,一段时间后可能恢复正常。

2019-08-04 19:35:34 493

原创 springmvc中需要配置(注解驱动)的情况

springmvc中需要配置注解驱动的情况

2019-08-04 16:32:57 1005

原创 springmvc中为什么要加(注解驱动)

注解驱动的配置

2019-08-04 15:51:04 887

原创 maven项目中常用依赖(二)

maven中的常用依赖

2019-08-04 13:44:01 344

原创 maven中常用依赖(一)

maven项目中常用依赖

2019-08-04 13:38:00 344

原创 在JAVA 中 mybatis-config.xml 没有配置好会产生的调试错误情况

在JAVA 中 mybatis-config.xml 配置文件错误产生的问题解决方案。

2019-06-23 20:35:18 185

C#程序员参考手册

C#程序员参考手册,学习c#,做中国最小的白帽子黑客。

2014-09-28

空空如也

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

TA关注的人

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