- 博客(93)
- 资源 (1)
- 收藏
- 关注
转载 Genymotion下安装外部APK失败
下载Genymotion-ARM-Translation.zip文件,拖入Genymotion中使用windows CMD窗口执行ADB命令就OK**adb shell****cd /sdcard/Download/****sh /system/bin/flash-archive.sh /sdcard/Download/Genymotion-ARM-Translation.zip**
2019-03-26 10:40:48 6555 1
原创 mysql8 启动报错:Error while setting value ‘STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DI
Error while setting value 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' to 'sql_mode'.
2022-11-02 17:06:11 6290
原创 spring cloud 2021 gateway 报错503 Service Unavailable
spring cloud 2021 gateway 报错503 Service Unavailable
2022-08-14 11:56:52 3721
原创 Param ‘serviceName‘ is illegal, serviceName is blank
Param ‘serviceName’ is illegal, serviceName is blank
2022-08-12 07:50:04 3420 1
原创 MAVEN打包父工程添加maven-plugin,依赖子项目Unable to find main class问题解决
MAVEN打包父工程添加maven-plugin,依赖子项目Unable to find main class问题解决
2022-07-17 15:22:12 1380 1
原创 错误:java.lang.AbstractMethodError:xxxxxxxxx.ServiceInstance
错误 : java.lang.AbstractMethodError: org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.choose(Ljava/lang/String;Lorg/springframework/cloud/client/loadbalancer/Request;)Lorg/springframework/cloud/client/ServiceInstance;
2022-07-11 23:38:29 1322
原创 No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalancer?
2022-07-11 23:16:36 289
原创 ERROR: temporary error (try again later)
ERROR: temporary error (try again later)
2022-06-25 14:46:38 3613 1
原创 elasticsearch启动报错:Plugin [analysis-ik] was built for Elasticsearch version 8.2.3 but version7.4.0
elasticsearch启动报错:Plugin [analysis-ik] was built for Elasticsearch version 8.2.3 but version7.4.0
2022-06-21 11:07:38 3764 1
原创 IDEA中提交代码点击commit一闪,没有任何提示,也没有错误,文件提交不了
IDEA中提交代码点击commit一闪,没有任何提示,也没有错误,文件提交不了
2022-06-17 10:56:58 3665
原创 Consul注册中心注册的服务总是红叉 (All service checks failing)
Consul注册中心注册的服务总是红叉 (All service checks failing)
2022-06-12 11:03:28 1985
原创 yarn : 无法加载文件 xxxxxxxxx,因为在此系统上禁止运行脚本。
yarn : 无法加载文件 xxxxxxxxx,因为在此系统上禁止运行脚本。
2022-06-08 14:59:32 508
原创 Yarn创建vite错误
报错方式success Installed "@vitejs/create-app@2.5.2" with binaries: - create-app - cva 文件名、目录名或卷 文件名、目录名或卷标语法不正确。error Command failed.Exit code: 1Command: D:\Install\nodejs\node_global\bin\create-appArguments: vue-tailwindDirectory: F:\code\ta
2022-02-15 13:27:19 1735
原创 linux-alpine安装软件使用指定安装源
linux-alpine安装软件使用指定安装源1. 永久修改apk下载源地址vi etc/apk/repositories替换成阿里源http://mirrors.aliyun.com/alpine/v3.14/main/http://mirrors.aliyun.com/alpine/v3.14/community/之后更新源apk update2. 临时更改apk下载源地址直接在软件安装后面 添加源地址apk add git --repository http:
2021-12-30 08:42:50 3573 1
原创 error:0308010C:digital envelope routines::unsupported
this[kHandle] = new _Hash(algorithm, xofLen); ^Error: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypto/hash:67:19) at Object.createHash (node:crypto:130:10) at module.exports (/vuepres.
2021-12-29 17:35:05 23382 7
原创 docker elasticsearch挂载宿主机报 java.nio.file.AccessDeniedException: /usr/share/elasticsearch/data/nodes
docker容器启动命令: docker run -dit --name dev_es -p 9200:9200 -p 9300:9300 \ -v /data/elasticsearch/data/:/usr/share/elasticsearch/data \-v /data/elasticsearch/logs/:/usr/share/elasticsearch/logs \-e "discovery.type=single-node" elasticsearch:7.16.2部署el
2021-12-28 09:39:12 1539 1
原创 配置nginx.conf实现80端口重定向至443(http跳转https)
nginx 80端口重定向到443端口,也就是http访问自动跳转到https修改nginx.conf配置文件配置如下:按照如下内容修改nginx.conf 配置文件,80端口会自动转给443端口,这样就强制使用SSL证书加密了。访问http的时候会自动跳转到https上面。#以下属性中,以ssl开头的属性表示与证书配置有关。server { listen 443 ssl; #配置HTTPS的默认访问端口为443。 #如果未在此处配置HTTPS的默认访问端口,可能会造成
2021-12-27 09:45:02 14547
原创 Gradle 项目配置阿里云仓库
在build.gradle文件中 repositories节点加入下面配置:repositories { repositories { maven { url 'https://maven.aliyun.com/repository/public/' } mavenLocal() mavenCentral() } mavenCentral()}如果想使用maven.aliyun.com提供的其它代理仓,以使用spring仓.
2021-12-24 13:08:32 4219
原创 MySQL 8.0 Public Key Retrieval is not allowed 错误的解决方法
在使用 MySQL 8.0 时重启应用后提示 com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:Public Key Retrieval is not allowed最简单的解决方法是在连接字符串后面添加allowPublicKeyRetrieval=true文档中(https://mysql-net.github.io/MySqlConnector/connection-options/)给出的解释是:如果
2021-12-13 10:40:27 134
原创 SpringBoot解决Swagger2出现No mapping for GET /swagger-ui.html
SpringBoot解决Swagger2出现No mapping for GET /swagger-ui.htmlspringBoot配置Swagger2出现页面无法访问错误:No mapping for GET /swagger-ui.html如果继承了WebMvcConfigurationSupport,则在yml中配置的相关内容会失效。 需要重新指定静态资源在当前继承WebMvcConfigurationSupport、WebMvcConfigurer的配置类加上如下代码:@Overr
2021-07-02 10:28:08 1230
原创 在Ubuntu中安装Docker
更新ubuntu的apt源索引 sudo apt-get update安装包允许apt通过HTTPS使用仓库 sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common添加Docker官方GPG key curl -fsSL https://download.docker.com/linux/ubuntu/gp..
2020-12-24 12:07:11 134
原创 删除Centos更新后多余的内核
1.首先列出系统中正在使用的内核uname -r3.10.0-1160.6.1.el7.x86_642.查询系统中全部的内核rpm -qa | grep kernelkernel-3.10.0-1160.el7.x86_64kernel-tools-3.10.0-1160.6.1.el7.x86_64kernel-tools-libs-3.10.0-1160.6.1.el7.x86_64kernel-3.10.0-1160.6.1.el7.x86_643.将你想删除的内核删除掉
2020-12-14 22:01:35 601 1
原创 解决MySQL8.0时区的问题
java将当前时间保存到MySQL数据库时,MySQL中的时间不正确java数据库连接使用UTC时区(世界标准时间),即serverTimezone=UTCurl: jdbc:mysql://localhost:3306/test? serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=trueMySQL使用的time_zone属性是+00:00,而北京时间比UTC时间早8小时,即UTC+0.
2020-12-13 23:21:24 902
原创 Centos8使用阿里yum源
使用的是阿里巴巴开源镜像站,文件地址:https://mirrors.aliyun.com/repo/Centos-8.repo使用方方法: 先对源文件进行备份cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/default_CentOS-Base.repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-8.repo.
2020-12-11 08:04:39 3089
原创 SpringBoot设置跨域的几种方式
SpringBoot设置跨域的几种方式单个Controller及方法:全局跨域:1. 过滤器Filter2. 设置CorsConfiguration3. WebMvcConfigurer4. 自定义拦截器重写请求单个Controller及方法:@CrossOrigin作为一个强大的注解,特点就是不仅支持在controller中设置,还支持方法级注解。而最简单也最直接的方法,那就是在controller中直接加入。@CrossOrigin(origins = "*",allowCredentials
2020-12-10 20:23:19 530
原创 SpringBoot集成Druid、开启Druid监控、去除内置广告
build.gradle文件中加入下面配置dependencies { implementation "com.alibaba:druid-spring-boot-starter:${druidStarterVersion}"}如何开启druid在application-dev.yml中新增以下内容 spring: datasource: druid: # class name driver-class-name: com.mysql..
2020-12-10 20:01:17 649 1
原创 使用yarn搭建Vue,ElementUI,axios环境
使用yarn搭建Vue,ElementUI,axios环境1. 安装Yarn2. 搭建vue、ElementUI、axios环境2.1 安装webpack2.2 安装vue脚手架2.3 创建vue项目element_demo2.4 安装ElementUI2.5 安装axios3. 启动项目1. 安装Yarnwindows下Yarn安装2. 搭建vue、ElementUI、axios环境2.1 安装webpackyarn global add webpack2.2 安装vue脚手架yarn
2020-12-05 18:52:30 3524
原创 npm使用国内淘宝镜像的方法
npm使用国内淘宝镜像的方法通过命令配置1. 命令2. 验证命令通过使用cnpm安装1. 安装cnpm2. 使用cnpm通过命令配置1. 命令npm config set registry https://registry.npm.taobao.org2. 验证命令npm config get registry如果返回https://registry.npm.taobao.org,说明镜像配置成功。通过使用cnpm安装1. 安装cnpmnpm install -g cnpm --r
2020-12-05 18:23:16 171
原创 windows下Yarn安装
windows下Yarn安装方法一:使用安装包安装https://classic.yarnpkg.com/zh-Hans/docs/install#windows-stable打开下载安装程序一路下一步方法二:使用npm安装npm i yarn -g-i:install -g:全局安装(global),使用 -g 或 --global输入yarn -version 可以看到版本号,说明安装成功了。我们就可以在项目中像使用npm一样使用yarn了测试安装成功打开任意一个终端,c
2020-12-05 13:56:35 3561
原创 IDEA运行新项目时报Error running ‘XXXApplication‘: Command line is too long. Shorten command line for XXXApp
解决方法:首先找到项目工程里面的.idea/workspace.xml文件,然后再找到<component name="PropertiesComponent"></component>标签,标签如图所示:然后再在component 标签中添加一行 <property name="dynamic.classpath" value="true" />如图:保存后,再次启动项目即可成功运行了。...
2020-07-24 10:21:09 25147 2
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人