EA Agent Loader Parent

EA Agent Loader is a collection of utilities for java agent developers.

Лицензия

Лицензия

Группа

Группа

com.ea.agentloader
Идентификатор

Идентификатор

ea-agent-loader-parent
Последняя версия

Последняя версия

1.0.3
Дата

Дата

Тип

Тип

pom
Описание

Описание

EA Agent Loader Parent
EA Agent Loader is a collection of utilities for java agent developers.
Ссылка на сайт

Ссылка на сайт

https://github.com/electronicarts/ea-agent-loader/
Организация-разработчик

Организация-разработчик

Electronic Arts Inc
Система контроля версий

Система контроля версий

https://github.com/electronicarts/ea-agent-loader

Скачать ea-agent-loader-parent

Имя Файла Размер
ea-agent-loader-parent-1.0.3.pom 9 KB
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.ea.agentloader/ea-agent-loader-parent/ -->
<dependency>
    <groupId>com.ea.agentloader</groupId>
    <artifactId>ea-agent-loader-parent</artifactId>
    <version>1.0.3</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.ea.agentloader/ea-agent-loader-parent/
implementation 'com.ea.agentloader:ea-agent-loader-parent:1.0.3'
// https://jarcasting.com/artifacts/com.ea.agentloader/ea-agent-loader-parent/
implementation ("com.ea.agentloader:ea-agent-loader-parent:1.0.3")
'com.ea.agentloader:ea-agent-loader-parent:pom:1.0.3'
<dependency org="com.ea.agentloader" name="ea-agent-loader-parent" rev="1.0.3">
  <artifact name="ea-agent-loader-parent" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.ea.agentloader', module='ea-agent-loader-parent', version='1.0.3')
)
libraryDependencies += "com.ea.agentloader" % "ea-agent-loader-parent" % "1.0.3"
[com.ea.agentloader/ea-agent-loader-parent "1.0.3"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

  • agent-loader

EA Agent Loader

Project Deprecated

With the introduction of JDK9, dynamically self attaching Java Agents is considered bad practice. As such we are deprecating this project and will no longer continue to maintain it. The project remains here for reference and for JDK8 users.

Brief

EA Agent Loader is a collection of utilities for java agent developers. It allows programmers to write and test their java agents using dynamic agent loading (without using the -javaagent jvm parameter).

Developer & License

This project was developed by Electronic Arts and is licensed under the BSD 3-Clause License.

Example

public class HelloAgentWorld
{
    public static class HelloAgent
    {
        public static void agentmain(String agentArgs, Instrumentation inst)
        {
            System.out.println(agentArgs);
            System.out.println("Hi from the agent!");
            System.out.println("I've got instrumentation!: " + inst);
        }
    }

    public static void main(String[] args)
    {
        AgentLoader.loadAgentClass(HelloAgent.class.getName(), "Hello!");
    }
}
com.ea.agentloader

Electronic Arts

Версии библиотеки

Версия
1.0.3
1.0.2
1.0.1
1.0.0
0.9.0