skywalking-java/test/plugin/scenarios
Gong Dewei 267aba8fad
Improve bytebuddy class enhance for retransform classes (#561)
* SWAuxiliaryTypeNamingStrategy
Auxiliary type name pattern: <origin_class_name>$<name_trait>$auxiliary$<auxiliary_type_instance_hash>

* DelegateNamingResolver
Interceptor delegate field name pattern: <name_trait>$delegate$<class_name_hash>$<plugin_define_hash>$<intercept_point_hash>

* SWMethodNameTransformer
Renamed origin method pattern: <name_trait>$original$<method_name>$<method_description_hash>

* SWImplementationContextFactory
Method cache value field pattern: cachedValue$<name_trait>$<origin_class_name_hash>$<field_value_hash>
Accessor method name pattern:  <renamed_origin_method>$accessor$<name_trait>$<origin_class_name_hash>

Here is an example of manipulated enhanced class with new naming policies of auxiliary classes, fields, and methods

```java
 import sample.mybatis.controller.HotelController$sw$auxiliary$19cja42;
 import sample.mybatis.controller.HotelController$sw$auxiliary$p257su0;
 import sample.mybatis.domain.Hotel;
 import sample.mybatis.service.HotelService;

 @RequestMapping(value={"/hotel"})
 @RestController
 public class HotelController
 implements EnhancedInstance {
     @Autowired
     @Lazy
     private HotelService hotelService;
     private volatile Object _$EnhancedClassField_ws;

     // Interceptor delegate fields
     public static volatile /* synthetic */ InstMethodsInter sw$delegate$td03673$ain2do0$8im5jm1;
     public static volatile /* synthetic */ InstMethodsInter sw$delegate$td03673$ain2do0$edkmf61;
     public static volatile /* synthetic */ ConstructorInter sw$delegate$td03673$ain2do0$qs9unv1;
     public static volatile /* synthetic */ InstMethodsInter sw$delegate$td03673$fl4lnk1$m3ia3a2;
     public static volatile /* synthetic */ InstMethodsInter sw$delegate$td03673$fl4lnk1$sufrvp1;
     public static volatile /* synthetic */ ConstructorInter sw$delegate$td03673$fl4lnk1$cteu7s1;

     // Origin method cache value field
     private static final /* synthetic */ Method cachedValue$sw$td03673$g5sobj1;

     public HotelController() {
         this(null);
         sw$delegate$td03673$ain2do0$qs9unv1.intercept(this, new Object[0]);
     }

     private /* synthetic */ HotelController(sw.auxiliary.p257su0 p257su02) {
     }

     @GetMapping(value={"city/{cityId}"})
     public Hotel selectByCityId(@PathVariable(value="cityId") int n) {
         // call interceptor with auxiliary type and parameters and origin method object
         return (Hotel)sw$delegate$td03673$ain2do0$8im5jm1.intercept(this, new Object[]{n}, new HotelController$sw$auxiliary$19cja42(this, n), cachedValue$sw$td03673$g5sobj1);
     }

     // Renamed origin method
     private /* synthetic */ Hotel sw$origin$selectByCityId$a8458p3(int cityId) {
/*22*/         return this.hotelService.selectByCityId(cityId);
     }

     // Accessor of renamed origin method, calling from auxiliary type
     final /* synthetic */ Hotel sw$origin$selectByCityId$a8458p3$accessor$sw$td03673(int n) {
         // Calling renamed origin method
         return this.sw$origin$selectByCityId$a8458p3(n);
     }

     @Override
     public Object getSkyWalkingDynamicField() {
         return this._$EnhancedClassField_ws;
     }

     @Override
     public void setSkyWalkingDynamicField(Object object) {
         this._$EnhancedClassField_ws = object;
     }

     static {
         ClassLoader.getSystemClassLoader().loadClass("org.apache.skywalking.apm.dependencies.net.bytebuddy.dynamic.Nexus").getMethod("initialize", Class.class, Integer.TYPE).invoke(null, HotelController.class, -1072476370);
         // Method object
         cachedValue$sw$td03673$g5sobj1 = HotelController.class.getMethod("selectByCityId", Integer.TYPE);
     }
 }
```

Auxiliary type of Constructor : 
```java
class HotelController$sw$auxiliary$p257su0 {
}
```

Auxiliary type of  `selectByCityId` method: 
```java
class HotelController$sw$auxiliary$19cja42
implements Runnable,
Callable {
    private HotelController argument0;
    private int argument1;

    public Object call() throws Exception {
        return this.argument0.sw$origin$selectByCityId$a8458p3$accessor$sw$td03673(this.argument1);
    }

    @Override
    public void run() {
        this.argument0.sw$origin$selectByCityId$a8458p3$accessor$sw$td03673(this.argument1);
    }

    HotelController$sw$auxiliary$19cja42(HotelController hotelController, int n) {
        this.argument0 = hotelController;
        this.argument1 = n;
    }
}
```
2023-06-24 20:50:10 +08:00
..
activemq-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
apm-toolkit-trace-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
apm-toolkit-tracer-scenario Expose complete Tracing APIs in the tracing toolkit (#442) 2023-01-24 08:01:18 +08:00
armeria-0.96minus-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
armeria-0.96plus-scenario Adapt Armeria's plugins to the latest version 1.22.x (#459) 2023-02-26 21:25:43 +08:00
asynchttpclient-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
avro-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
baidu-brpc-3.x-scenario add baidu-brpc-java-3.x plugin (#321) 2022-09-25 17:57:54 +08:00
baidu-brpc-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
canal-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
cassandra-java-driver-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
clickhouse-0.3.1-scenario clickhouse-jdbc-plugin support trace sql parameters when enable plugin.jdbc.trace_sql_parameters (#515) 2023-04-25 18:12:19 +08:00
clickhouse-0.3.2.x-scenario clickhouse-jdbc-plugin support trace sql parameters when enable plugin.jdbc.trace_sql_parameters (#515) 2023-04-25 18:12:19 +08:00
correlation-autotag-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
customize-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
cxf-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
dbcp-2.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
druid-1.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
dubbo-2.5.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
dubbo-2.7.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
dubbo-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
ehcache-2.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
elasticjob-2.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
elasticjob-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
elasticsearch-5.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
elasticsearch-7.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
elasticsearch-rest-high-level-6.x-scenario Save http status code regardless of it's status (#258) 2022-07-12 14:53:14 +08:00
elasticsearch-transport-6.x-scenario Save http status code regardless of it's status (#258) 2022-07-12 14:53:14 +08:00
exception-checker-spring-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
exception-checker-tomcat-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
fastjson-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
feign-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
finagle-6.44.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
finagle-17.10.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
gateway-2.0.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
gateway-2.1.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
gateway-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
graphql-8.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
graphql-9.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
graphql-12.x-15.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
graphql-16plus-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
grizzly-2.3.x-4.x-scenario Support grizzly web server trace (#528) 2023-05-15 08:18:52 +08:00
grizzly-2.3.x-4.x-workthreadpool-scenario Support monitor grizzly thread pool (#533) 2023-05-25 19:30:35 -04:00
grpc-generic-call-scenario Save http status code regardless of it's status (#258) 2022-07-12 14:53:14 +08:00
grpc-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
gson-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
guava-cache-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
guava-eventbus-scenario fix npe in guava eventbus plugin (#559) 2023-06-21 14:32:18 +08:00
h2-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
hbase-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
hikaricp-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
httpasyncclient-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
httpclient-3.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
httpclient-4.3.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
httpclient-5.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
hutool-http-5.x-scenario Save http status code regardless of it's status (#258) 2022-07-12 14:53:14 +08:00
hystrix-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
impala-jdbc-2.6.x-scenario Polish JDBC plugins to make DBType accurate (#396) 2022-11-23 14:36:18 +08:00
influxdb-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jackson-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jdk-forkjoinpool-scenario Support forkjoinpool plugin (#505) 2023-04-17 17:45:09 +08:00
jdk-http-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jdk-threading-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jdk-threadpool-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jdk17-with-gson-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jedis-2.x-scenario refactor pipeline in jedis-plugin (#445) 2023-02-03 20:56:03 +08:00
jedis-3.1.x-plus-scenario refactor pipeline in jedis-plugin (#445) 2023-02-03 20:56:03 +08:00
jedis-3.3.x-plus-scenario fix jedis can not get host info when use jedis 3.3.x+ (#526) 2023-05-08 22:50:17 +08:00
jedis-4.x-scenario refactor pipeline in jedis-plugin (#445) 2023-02-03 20:56:03 +08:00
jersey-2.0.x-2.25.x-scenario Support grizzly web server trace (#528) 2023-05-15 08:18:52 +08:00
jersey-2.26.x-2.39.x-scenario Support grizzly web server trace (#528) 2023-05-15 08:18:52 +08:00
jersey-3.x-scenario Support grizzly web server trace (#528) 2023-05-15 08:18:52 +08:00
jetty-10.x-scenario Support jetty 11 (#545) 2023-06-06 09:39:34 +08:00
jetty-11.x-scenario Support jetty 11 (#545) 2023-06-06 09:39:34 +08:00
jetty-11.x-thread-pool-scenario support jetty server work thread pool metric monitor (#517) 2023-05-02 16:34:06 +08:00
jetty-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
jetty-thread-pool-scenario support jetty server work thread pool metric monitor (#517) 2023-05-02 16:34:06 +08:00
jsonrpc4j-1.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
kafka-scenario add Kafka Clients 3.x support (#429) 2022-12-23 13:48:50 +08:00
kotlin-coroutine-scenario Enhance kotlin coroutine plugin for stack tracing (#451) 2023-02-09 11:28:23 +08:00
kylin-jdbc-2.6.x-3.x-4.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
lettuce-scenario Enhance lettuce plugin to adopt uniform tags (#441) 2023-01-16 11:46:39 +08:00
mariadb-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
micronaut-http-scenario Add plugin to support micronaut (#291) 2022-08-19 18:20:32 +08:00
mongodb-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
mongodb-4.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
mssql-jdbc-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
mssql-jtds-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
mybatis-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
mysql-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
nats-2.14.x-2.15.x-scenario Polish up kafka,nats,activemq,rabbitmq plugins to set peer at comsumer side (#377) 2022-11-06 18:57:19 +08:00
neo4j-4.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
netty-socketio-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
okhttp-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
okhttp2-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
oracle-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
play-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
postgresql-above9.4.1207-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
postgresql-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
pulsar-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
quartz-scheduler-2.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
quasar-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
rabbitmq-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
redisson-scenario Enhance redisson plugin to adopt uniform tags (#438) 2023-01-11 23:09:19 +08:00
resteasy-4.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
resttemplate-4.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
resttemplate-6.x-scenario Activate Mircometer Observation CI test (#443) 2023-01-26 22:55:39 +08:00
retransform-class-scenario Improve bytebuddy class enhance for retransform classes (#561) 2023-06-24 20:50:10 +08:00
retransform-class-tomcat-scenario Improve bytebuddy class enhance for retransform classes (#561) 2023-06-24 20:50:10 +08:00
rocketmq-scenario add RocketMQ 5.x plugin (#536) 2023-06-07 22:05:08 +08:00
sentinel-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
servicecomb-1.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
servicecomb-2.x-scenario Save http status code regardless of it's status (#258) 2022-07-12 14:53:14 +08:00
shardingsphere-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
shardingsphere-4.0.x-scenario Polish JDBC plugins to make DBType accurate (#396) 2022-11-23 14:36:18 +08:00
shardingsphere-4.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
shardingsphere-5.0.0-scenario Polish JDBC plugins to make DBType accurate (#396) 2022-11-23 14:36:18 +08:00
shenyu-2.4.x-dubbo-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
shenyu-2.4.x-grpc-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
shenyu-2.4.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
shenyu-2.4.x-sofarpc-scenario Exclude synthetic methods for WitnessMethod (#504) 2023-04-14 17:23:47 +08:00
sofarpc-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
solrj-7.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
spring-3.0.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
spring-3.1.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
spring-4.1.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
spring-4.3.x-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
spring-6.x-scenario fix tomcat-10x-plugin and add test case to support tomcat7.x-8.x-9.x (#466) 2023-03-03 17:31:02 +08:00
spring-async-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
spring-cloud-feign-1.1.x-scenario Save http status code regardless of it's status (#258) 2022-07-12 14:53:14 +08:00
spring-cloud-feign-1.2.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
spring-cloud-feign-2.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
spring-kafka-1.3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
spring-kafka-2.2.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
spring-kafka-2.3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
spring-scheduled-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
spring-tx-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
springmvc-reactive-devtools-scenario Rename`JDBI` to `JDBC` (#381) 2022-11-14 11:58:35 +08:00
springmvc-reactive-scenario Rename`JDBI` to `JDBC` (#381) 2022-11-14 11:58:35 +08:00
struts2.3-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
struts2.5-scenario Add plugin for Spring 6, set development baseline to JDK 17, remove Powermock entirely (#444) 2023-01-31 19:29:32 +08:00
thrift-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
tomcat-9x-scenario fix tomcat-10x-plugin and add test case to support tomcat7.x-8.x-9.x (#466) 2023-03-03 17:31:02 +08:00
tomcat-10x-scenario fix tomcat-10x-plugin and add test case to support tomcat7.x-8.x-9.x (#466) 2023-03-03 17:31:02 +08:00
tomcat-thread-pool-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
undertow-scenario Update the endpoint name format of the `Undertow` (#497) 2023-04-02 11:12:24 +08:00
undertow-worker-thread-pool-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
vertx-core-4.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
vertx-eventbus-3.x-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
vertx-web-3.6plus-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
vertx-web-3.54minus-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
webflux-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00
xxl-job-2.2.0-scenario feat: add support xxl-job 2.3.x (#295) 2022-08-19 15:09:00 +08:00
xxl-job-2.3.x-scenario feat: add support xxl-job 2.3.x (#295) 2022-08-19 15:09:00 +08:00
zookeeper-scenario Lock the maven-compiler-plugin version to avoid the warning log (#400) 2022-11-30 00:33:38 +08:00