- 博客(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 165
原创 deepin 安装git
deepin 下安装git sudo apt-get install git git --version git config --global user.name "hello" git config --global user.email hello@126.com git config --list
2021-01-16 19:17:46 749
原创 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 204
原创 deepin 下面安装jdk1.8
deepin 下面安装jdk1.8安装命令sudo apt install -y openjdk-8-jdkjava -version
2021-01-16 17:01:38 305
原创 spring cloud gateway 整合出现的坑
1.整合是出现问题:注:添加的依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> ...
2020-05-06 14:23:16 5645 1
原创 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 297
原创 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 1016
原创 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 264
原创 Spring Boot 中集成 Mybatis 开启驼峰命名转换
抛出问题1)数据库表:2)实体类属性:@NoArgsConstructor@AllArgsConstructor@Datapublic class Department { private Integer id; private String departmentName;}提出问题:如何在插入字段时,可以使departmentName ------> 转...
2019-11-01 20:13:16 1331
原创 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 1703
原创 http状态码提示和含义
Http状态码 200 : 表示请求处理完成并成功返回301 : 请求的网页已永久移动到新位置302 : 表示请求需要进一步细化。304 : 属于重定向400 : 客户端请求有语法错误,不能服务器所理解。401 : 请求未经授权404 : 请求资源不存在500 : 表示服务器的资源发送错误。(服务器内部错误)503 : 服务器当前不能处理客户端的请求,一段时间后可能恢复正常。
2019-08-04 19:35:34 626
原创 在JAVA 中 mybatis-config.xml 没有配置好会产生的调试错误情况
在JAVA 中 mybatis-config.xml 配置文件错误产生的问题解决方案。
2019-06-23 20:35:18 218
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人