Child pages (Children Display) |
---|
Overview
FIXEdge Java functionality can be extended with custom modules if it is required. New logic can be integrated via Spring configuration files. FIXEdge Java proposed config file conf/spring/custom-ext.xml
as a default extension point. It is expected that custom beans will be added there.
Also conf/spring/custom-ext.xml
already includes two java beans for extending the Groovy rules with custom functionality:
- List bean with id "customBLImports" allows extending the default imports for groovy scripts:
Code Block | ||
---|---|---|
| ||
<util:list id="customImports" value-type="java.lang.String">
<!--Example of import value-->
<value>java.util.concurrent.atomic.AtomicInteger</value>
</util:list> |
- Map bean with id "customBLBeans" allows adding custom beans as variables to groovy scripts:
...
language | xml |
---|
...