Hello, I'm a new module developer still very much learning. I am trying to follow the gateway-webpage example and after I have made all my changes I see the question marks on the gateway config page. The error I get
java.util.MissingResourceException: Can't find bundle for base name com/gpasettings/GPASettings, locale en_US
this is my gateway hook class setup:
@Override
public void setup(GatewayContext gatewayContext) {
this.context = gatewayContext;
log.debug("Beginning setup of GPA Settings Module");
// Register GatewayHook.properties by registering the GatewayHook.class with BundleUtils
BundleUtil.get().addBundle("GPASettings", getClass(), "GPASettings");
//rest of code
I am not sure what I'm missing here. I have a GPASettings.properties in the resource folder.
Sorry I did not noticed this was tagged as ignition 7.9. I am doing everything with the most up to date versions of SDK and maven plugin.