https://github.com/forge/addon-batch
Java EE 7 Batch Addon
https://github.com/forge/addon-batch
Last synced: 3 months ago
JSON representation
Java EE 7 Batch Addon
- Host: GitHub
- URL: https://github.com/forge/addon-batch
- Owner: forge
- License: apache-2.0
- Created: 2014-09-25T18:24:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-25T18:44:10.000Z (over 11 years ago)
- Last Synced: 2025-01-21T08:44:31.555Z (about 1 year ago)
- Language: Java
- Size: 152 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.asciidoc
- License: LICENSE
Awesome Lists containing this project
README
== javaee7-batch
:idprefix: id_
(choose one, do not modify, then add a second sentence with a brief description, starting with - "The javaee7-batch addon enables blah blah...)
This addon provides *standalone* functionality, and *exports services* for use in other addons.
This addon provides *standalone* functionality.
This addon *exports services* for use in other addons.
This addon *provides classes* for use in other addons.
This addon is a 'Furnace container' that provides *lifecycle* and *service registry* support for dependent addons.
=== Dependencies: None (or)
=== Depends on
[options="header"]
|===
|Addon |Exported |Optional
|DEP1
|yes
|no
|DEP2
|yes
|yes
|===
== Setup
This Addon requires the following installation steps.
=== Add configuration to pom.xml
To use this addon, you must add it as a dependency in the *pom.xml* of your `forge-addon` classified artifact:
(Make sure the dependency is put all the way to the left, and uses 3 spaces for indentation of GAV)
[source,xml]
----
org.jboss.forge.addon.javaee7.batch
javaee7-batch
forge-addon
${version}
----
== Features
ABCFactory for simple ABC blah::
Allows for blah blah
+
[source,java]
----
@Inject private ABCFactory factory;
ABC abc = factory.createABC();
----
+
[TIP]
====
If your addon uses a container that does not support "@Inject" annotations, services such as the `ABCFactory` may also be
accessed via the `AddonRegistry`:
----
Imported imported = addonRegistry.getServices(ABCFactory.class);
ABCFactory factory = imported.get();
----
====
Creating a new XYZ instance::
Causes XYZ to occur
+
[source,java]
----
XYZ xyz = factory.createXYZ();
----
== TODO
- Add a top-level pom.xml for installation
- Create new reader, processor, writer
- Upgrade to 2.7.0
- IDE integration