We are using the FF4J Framework to toggle features in our spring boot application. we manage features using the web console ( Insert/update new features into the DB) that it provides but to use the toggling in java, we are using spring AOP (@Flip
annotation) which uses the XML file, so in this case, we will have to manage the feature flags in the database and also in the XML files. Is there any other way in which I can use ff4j in java without XML ( would be better if its annotation-based as it's easy to manage the code) and rather read from the DB in our spring boot application
Also, in the front end angular application, we are using the API ( /api/ff4j/store/features) that it provides to get the features