Bean Proxy

The tool for creation of bean proxies

Лицензия

Лицензия

Группа

Группа

org.jmmo
Идентификатор

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

bean-proxy
Последняя версия

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

1.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

Bean Proxy
The tool for creation of bean proxies
Ссылка на сайт

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

https://github.com/megaprog/bean-proxy
Система контроля версий

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

https://github.com/megaprog/bean-proxy

Скачать bean-proxy

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

<!-- https://jarcasting.com/artifacts/org.jmmo/bean-proxy/ -->
<dependency>
    <groupId>org.jmmo</groupId>
    <artifactId>bean-proxy</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.jmmo/bean-proxy/
implementation 'org.jmmo:bean-proxy:1.0'
// https://jarcasting.com/artifacts/org.jmmo/bean-proxy/
implementation ("org.jmmo:bean-proxy:1.0")
'org.jmmo:bean-proxy:jar:1.0'
<dependency org="org.jmmo" name="bean-proxy" rev="1.0">
  <artifact name="bean-proxy" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.jmmo', module='bean-proxy', version='1.0')
)
libraryDependencies += "org.jmmo" % "bean-proxy" % "1.0"
[org.jmmo/bean-proxy "1.0"]

Зависимости

test (2)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
org.hamcrest : hamcrest-junit jar 2.0.0.0

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

Данный проект не имеет модулей.

Bean Proxy

The tool for creation of bean proxies.

How to get it?

You can use it as a maven dependency:

<dependency>
    <groupId>org.jmmo</groupId>
    <artifactId>bean-proxy</artifactId>
    <version>1.0</version>
</dependency>

Or download the latest build at: https://github.com/megaprog/bean-proxy/releases

How to use it?

Let we have the interface

public interface Example {
    int getIntValue();
    void setIntValue(int value);
}

And some map

Map<String, Object> values = new HashMap<>();
values.put("intValue", 1);

We need to create Example class instance with properties corresponded to values map. Gotcha!

Example example = BeanProxy.create(Example.class, values);

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

Версия
1.0