You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
arthas/_sources/spring-boot-starter.md.txt

77 lines
1.9 KiB
Plaintext

5 years ago
Arthas Spring Boot Starter
=====
> 只支持 spring boot 2
最新版本:[查看](https://search.maven.org/search?q=arthas-spring-boot-starter)
配置maven依赖
```xml
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-spring-boot-starter</artifactId>
<version>${arthas.version}</version>
</dependency>
```
应用启动后spring会启动arthas并且attach自身进程。
### 配置属性
比如通过配置tunnel server实现远程管理
```
5 years ago
arthas.agent-id=hsehdfsfghhwertyfad
5 years ago
arthas.tunnel-server=ws://47.75.156.201:7777/ws
```
全部支持的配置项:[参考](https://github.com/alibaba/arthas/blob/master/arthas-spring-boot-starter/src/main/java/com/alibaba/arthas/spring/ArthasProperties.java)
### 查看Endpoint信息
5 years ago
> 需要配置spring boot暴露endpoint[参考](https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-features.html#production-ready-endpoints)
5 years ago
假定endpoint端口是 8080则通过下面url可以查看
http://localhost:8080/actuator/arthas
```
{
"arthasConfigMap": {
5 years ago
"agent-id": "hsehdfsfghhwertyfad",
5 years ago
"tunnel-server": "ws://47.75.156.201:7777/ws",
}
}
```
### 非spring boot应用使用方式
非Spring Boot应用可以通过下面的方式来使用
```xml
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-agent-attach</artifactId>
<version>${arthas.version}</version>
</dependency>
5 years ago
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-packaging</artifactId>
<version>${arthas.version}</version>
</dependency>
5 years ago
```
```java
import com.taobao.arthas.agent.attach.ArthasAgent;
public class ArthasAttachExample {
public static void main(String[] args) {
ArthasAgent.attach();
}
}
```