Questions tagged [ff4j]

A library for Java that implements the Feature Toggle pattern. FF4J, stands for Feature Flipping for Java.

FF4j is an implementation of Feature Toggle pattern : Enable and disable features or your applications at runtime thanks to a dedicated web console, REST API, JMX or even CLI.

It also handles properties and provides generic interfaces to work with configuration properties, store them in 10 different databases and integrates with both Archaius and Commons-Configuration.

More information can be found at ff4j.org or Reference Documentation in the wiki.

28 questions
1
vote
1 answer

FF4J does not flip when using AOP annotation @Flip in spring project

I've injected ff4j following example. Ff4jConfiguration.class: @Bean @ConditionalOnMissingBean public FF4j getFF4j() { return new FF4j("ff4j.xml"); } and application loader was also changed: @Import( {...,…
Sergii
  • 7,044
  • 14
  • 58
  • 116
1
vote
1 answer

Relative path for static resources

I am using ff4j web library for toggling in my Java web application. The URL for the web console resolves to localhost:8443/bat/ff4j-console However static resources in the html resolve to localhost:8443/bat/static/images. …
Forkmohit
  • 733
  • 3
  • 12
  • 31
1
vote
1 answer

"FF4J"(flip) not work with "Hystrix"

FF4J doesn't work with Hystrix. For example in MyRest I try flip the implementation with some condition, it's work fine without Hytrix annotation @HystrixCommand in MyIntegrationImpl. But when I use @HystrixCommand in MyIntegrationImpl it's not…
rafambbr
  • 570
  • 8
  • 15
1
vote
3 answers

Spring injection not working for FF4J web console

I am try to get the FF4j (ff4j.org) web console to work. According to the documentation on the website, I use the following configuration: ff4j-console
Itay k
  • 4,163
  • 4
  • 31
  • 39
0
votes
0 answers

FF4J default rest endpoints not appearing under Swagger

I don't see the rest api endpoints i.e. ff4j,store,{uid} etc. mentioned on ff4j website appearing under Swagger. I have a controller with one endpoint and it appears fine.
PramTal
  • 51
  • 8
0
votes
1 answer

ff4j kotlin cannot create table throws BadSqlGrammarException

I am trying to integrate FF4J into my spring boot application project however it looks like there is some issue with driver or FF4J and the db schema is not created. My configuration file: @Configuration @ConditionalOnClass(FF4j::class) class…
matrix
  • 314
  • 4
  • 24
0
votes
1 answer

FF4J: server side caching for feature store

I am using ff4j-spring-boot-starter with f4j-store-springjdbc to setup my ff4j server. All my other microservices use the endpoints given by ff4j to access this feature store and the response is returned in JSON. Since the data does not change that…
tushitjain
  • 26
  • 6
0
votes
1 answer

How to deploy ff4j server in AKS?

I have created ff4j server with name - "ff4j-feature-toggle-server" as a maven java project. Trying to deploy this on AKS. I get the below in my logs - "no main manifest attribute, in ff4j-feature-toggle-server.jar" I have checked my deployment…
0
votes
1 answer

How can ff4j client consume the rest api exposed by ff4j server(spring mvc)?

I have used ff4j-sample-springboot2x-jdbc-postgres and setup my ff4j server along with DB part and exposed the api - accessible at "/api/ff4j". This is my admin component. Now I want a client microservice (also a springboot app) to consume this…
0
votes
2 answers

How to use FF4J to get the features in java without xml

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…
Akhila
  • 41
  • 4
0
votes
1 answer

Spring boot REST application integrating FF4j. How to fix mvc mapping for dependent library?

Integrating FF4j in my application I've got a queue of issues. Its integrated finally following recommendation. Short description of recommendation is: Remove auto-configuration of thymeleaf; Add the old thymeleaf version 2.1.4.RELEASE which is…
Sergii
  • 7,044
  • 14
  • 58
  • 116
0
votes
1 answer

Override the style sheet of a dependency in a maven project

I have a dependency in a maven project which renders html pages. I want to change the style of a table since the view is getting cut off. How can I access the stylesheet of the table and inject rules into it? Using intellij as the IDE and the…
user test
  • 13
  • 1
  • 2
0
votes
1 answer

FF4J feature toggling issue

Currently we are FF4J toggle framework for our Spring based application, where we are using SpringJDBSC store. Problem is currently we have multiple applications deployed on an enviroment like DEV,UAT etc., the features that are created on enabled…
swingmicro
  • 367
  • 1
  • 4
  • 19
1
2