posted @ 2024-03-31 21:40 草妖 阅读(27) 评论(0) 推荐(0)
摘要:
打包前提条件: 1、准备好即将要打包的jar包;2、安装go运行环境;3、配置maven编译环境 一:安装go运行环境下载地址 二、编写springboot打包程序(建议前往https://gitee.com/mirrors/XJar#xjar-查看) pom.xml <project xmlns= 阅读全文
摘要:
看到相关的连接: 1、Linux基础入门 | vim常用命令详解 ;2、 查找文件: find:find . -name "*.tar.gz" // 查找当前目录下的“.tar.gz”后缀文件locate:不需要指定路径,搜索的是系统缓存的索引表(mlocate.db)。locate '*.tar. 阅读全文
posted @ 2024-03-31 21:40 草妖 阅读(6) 评论(0) 推荐(0)
摘要:
详细文档请参考:web自动化测试 使用java+selenium+Junit 一、安装Java环境和Google 略。注:1.安装Java版本8及以上;2.安装Google浏览器(这里需要注意版本号)。 二、安装Google驱动(详情可以参照“java+selenium环境搭建_在上山的mei的博客 阅读全文
posted @ 2024-03-31 21:39 草妖 阅读(3) 评论(0) 推荐(0)
摘要:
一、重写Database进行数据库账号密码加密处理 1、引用(具体可参照:SpringBoot中使用MyBatis+Druid+Swagger) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-b 阅读全文
posted @ 2024-03-30 16:44 草妖 阅读(5) 评论(0) 推荐(0)
摘要:
注:这里只做笔记处理,详情请跳转原文查看:springboot重写Datasource,getConnection方法 切面相关笔记记录:Spring boot AOP使用笔记 - 闪电龟龟 - 博客园 (cnblogs.com) 一、引入配置 <dependency> <groupId>aspec 阅读全文
posted @ 2024-03-30 16:44 草妖 阅读(13) 评论(0) 推荐(0)
摘要:
1.安装xshell服务:sudo apt-get install openssh-server sudo /etc/init.d/ssh start // 启动ssh服务 sudo /etc/init.d/ssh restart // 重启SSH服务,关闭stop sudo systemctl e 阅读全文
posted @ 2024-03-30 16:43 草妖 阅读(9) 评论(0) 推荐(0)
摘要:
1.Java 安装 方式一:比较建议,操作方便(原文链接:https://blog.csdn.net/zl5186888/article/details/126865711) 直接在linux上敲命令即可,无需移动文件和单独下载文件 1.linux下载包解压 yum -y install wget 阅读全文
posted @ 2024-03-30 16:43 草妖 阅读(5) 评论(0) 推荐(0)
摘要:
一、使用xml配置方式(不常用) 1、引用 <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.13</version> </dependency> <dependency 阅读全文
posted @ 2024-03-30 16:43 草妖 阅读(12) 评论(0) 推荐(0)
摘要:
pom.xml 引入依赖: <dependency> <groupId>com.lancoo</groupId> <artifactId>LoggingPlugIn</artifactId> <version>0.0.1</version> <scope>system</scope> <system 阅读全文
posted @ 2024-03-30 16:43 草妖 阅读(5) 评论(0) 推荐(0)