Package com.ganteater.ae.util


package com.ganteater.ae.util
Low-level, dependency-light utilities shared across the project.

This package contains small helper types that are used across multiple parts of the codebase. The utilities are mostly stateless and focus on tasks that would otherwise be repeated in higher layers.

Key utilities

Usage examples

Load a resource relative to a base directory (including support for jar:file: paths):

 String xml = AEUtils.loadResource("config.xml", new File("/opt/app"), null);
 

Discover SPI implementations registered via ServiceLoader:

 List<Class<?>> implementations = ClassUtils.findAssignable(MySpi.class);