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
I don't know much about ff4J , seems like very old way of doing dynamic properties, we use Apache Zookeeper to achieve this and we pass necessary values to our front end depending on the endpoints.