标签为“java”的页面如下
Java
Grpc练习
练习下Grpc使用。
proto和Service定义 src/main/proto/AgentModel.proto
模型定义2个实体,参数和返回值。
syntax = "proto3"; option java_package = "com.jimo.grpc"; message AgentInfo { string name = 1; sint32 index = 2; } message ReportResponse { bool ok = 1; string msg = 2; } src/main/proto/AgentService.proto
在服务这边就定义一个report方法。
syntax = "proto3"; option java_package = "com.jimo.grpc"; import "AgentModel.proto"; service Agent { rpc report(AgentInfo) returns (ReportResponse) {} } 编译 加入maven插件,同时编译proto文件和grpc。
<extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.6.2</version> </extension> </extensions> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <configuration> <protocArtifact>com.
Java
Java instanceof List<T>
其实这是一个很简单的问题,在Java中,通常我们要判断一个对象是不是某种类型,会用 instanceof 关键字。
但遇到带有泛型的 List<T> 是不能直接使用,这时候怎么办呢?
我会写出下面的代码:
if(a instanceof A){ A a1 = (A)a; } if(a instanceof List && !((List<?>)a).isEmpty() && ((List<?>)a).get(0) instanceof A){ List<A> list = (List<A>)a; } 没问题,就是会有警告,而且这种方式在List没有元素时就不行.
另外一种方式侵入性较高,就是对List进行继承,确定一个泛型:
public class ListA extends ArrayList<A> { } ListA listA = new ListA(); listA.add(new A()); assert listA instanceof ListA; 目前还没想到更好的办法,欢迎补充。
Java
Java Agent如何调试
做agent开发必备调试技巧:如何在IDEA里debug agent代码。
我们知道,agent一般是增强代码功能,常用的方式就是提供一个agent的jar包,应用通过 -javaagent:xxx-agent.jar这样启动。
java -javaagent:D:\agent\aweson-agent.jar -jar app.jar 使用起来简单,但开发起来就会遇到一个问题:如何调试?
总不能靠输入输出吧,当然不需要,比较IDEA还是很强大的。
先写一个简单的agent 建一个子模块 method-agent,这很重要。
我们以一个例子来演示:agent拦截类的方法,前后加入一句开始结束输出。
通过maven插件生成 MANIFEST.MF 的定义:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <manifestEntries> <Premain-Class>com.jimo.MethodAgent</Premain-Class> <!-- <Agent-Class>com.jimo.MethodAgent</Agent-Class>--> <Can-Redefine-Classes>true</Can-Redefine-Classes> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> 我们只拦截自己写的类, 这里用到了 javassist 来增强类。
<dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.29.0-GA</version> </dependency> import javassist.*; import java.io.IOException; import java.lang.instrument.Instrumentation; public class MethodAgent { public static void premain(String agentArgs, Instrumentation inst) { System.