摘要: spring cloud Alibaba 依赖 <properties> <spring.boot.version>2.3.12.RELEASE</spring.boot.version> <spring.cloud.version>Hoxton.SR12</spring.cloud.version 阅读全文
posted @ 2022-04-21 17:35 陈超阿 阅读(79) 评论(0) 推荐(0)
摘要: 添加swagger依赖: <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> swagg 阅读全文
posted @ 2022-04-20 10:00 陈超阿 阅读(193) 评论(0) 推荐(0)
摘要: package com.test.mybatis_plus_tes/* 官方代码生成器配置文档 https://baomidou.com/pages/981406/ CodeGenerator类放在spring boot启动类同级目录下run 添加依赖 <dependency> <groupId>c 阅读全文
posted @ 2022-04-19 16:37 陈超阿 阅读(154) 评论(0) 推荐(0)
摘要: Oh no! Something has gone wrong. a problem has occurred and the system can't recover. Please log out and try again. 图形界面崩溃 登出后 按Ctrl+Alt+F1~12 进入命令行界面 阅读全文
posted @ 2022-04-14 18:01 陈超阿 阅读(2254) 评论(0) 推荐(0)
摘要: 虚拟机CentOS 7 安装浏览器 https://www.heibaiketang.com/course/show/159.html 打不开浏览器 || 命令行启动 出现这个 chrome: symbol lookup error: chrome: undefined symbol: gdk_sc 阅读全文
posted @ 2022-04-14 14:56 陈超阿 阅读(453) 评论(0) 推荐(0)
摘要: 安装: python -m pip install Scrapy 创建项目:python -m scrapy startproject xxx (不知道为什么必要加python -m 待解决) 进入项目:cd xxx #进入某个文件夹下 创建爬虫:python -m scrapy genspider 阅读全文
posted @ 2021-09-29 22:31 陈超阿 阅读(45) 评论(0) 推荐(0)
摘要: 虚拟机CentOS 7 安装Mysql https://blog.csdn.net/sndayyu/article/details/96745748 Vmware实现向Linux虚拟机拖放文件 https://jingyan.baidu.com/article/2d5afd69ca61b485a2e 阅读全文
posted @ 2020-07-31 01:32 陈超阿 阅读(124) 评论(0) 推荐(0)
摘要: 增删改查 文件夹https://www.cnblogs.com/wbly2019/p/10730298.html ifconfig 查询IP vi /etc/目标文件 修改文件 // 按i进入编辑 // 按esc,输入:wq保存并退出vi 输入:q 不保存文件,退出vi mv 目标文件 /目标文件夹 阅读全文
posted @ 2020-07-31 01:27 陈超阿 阅读(167) 评论(0) 推荐(0)
摘要: 一、卸载centos7自带的jdk 以下所有操作都是CentOS7的root身份 打开终端、如果命令结尾是 # 则表示为root身份 如果不是则执行 su ,然后输入密码 切换root用户 1.查询指令 rpm -qa|grep java 或 rpm -qa|grep jdk 或 rpm -qa|g 阅读全文
posted @ 2020-07-26 17:14 陈超阿 阅读(294) 评论(0) 推荐(0)