- 简介
- 目录大纲
- 最新文档
Git相关操作
https://www.cnblogs.com/yuqing6/p/6739607.html 忽略文件提交 未add未commit 在pom.xml同目录下创建.gitignore文件,在里面进行配置,如 logs/* .mvn/* .idea/* target/* 已add未commit 比如删除.idea/workspace.xml文件 git rm --cached .idea/wo……
寒烟濡雨 - 2024年12月25日 10:39
Arthas 使用笔记
快速开始 下载并启动 ``` 下载jar包 curl -O https://arthas.aliyun.com/arthas-boot.jar 启动jar包 java -jar arthas-boot.jar ``` 如上图,启动arthas成功,后续命令默认都在arthas的命令行中敲下。 命令列表:https://arthas.aliyun.com/doc/commands.html 在线教……
寒烟濡雨 - 2024年12月20日 13:59
springboot 动态修改端口
添加依赖 xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> ……
寒烟濡雨 - 2024年12月10日 10:07
maven 插件
maven 添加指定路径为source root <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-ma……
寒烟濡雨 - 2024年11月14日 15:51
Springboot 引入外部jar包
1. 修改POM的build标签 <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-……
寒烟濡雨 - 2024年11月12日 16:36