Questions tagged [togglz]

Togglz is an implementation of the Feature Toggles pattern for Java.

Togglz is an implementation of the Feature Toggles pattern for Java.

Feature Toggles are a very common agile development practices in the context of continuous deployment and delivery.

The basic idea is to associate a toggle with each new feature you are working on. This allows you to enable or disable these features at application runtime, even for individual users.

68 questions
0
votes
1 answer

togglz-console included in Java EE7 application running on Weblogic 12.2.1.0

I'm trying to get the togglz-console up and running in our Java EE7 Application running on Weblogic 12.2.1.0. In order to use the console I added the dependency as stated on the togglz webpage, no addition to web.xml since I assume Weblogic will be…
phivo
  • 183
  • 2
  • 16
0
votes
2 answers

Togglz Feature Switch - How to implement ActivationStategy for multiple Id's/parms that have same logic(same logic in strategy for combinations)

Here is my quesion, I have a feature switch with a custom strategy named "UserActivationStrategy". All it does is, it has a hard coded value as 'user' in Id field and a 'IpAddress' as param and some logic to return true/false in…
karthik
  • 773
  • 2
  • 11
  • 19
0
votes
0 answers

Enable/Disable spring application modules at runtime

I'm finding way how to enable/disable modules at runtime. I found togglz framework so I just want to ask if I can achieve what I want with it or with any other tool. let's say I have following maven modules (each of them has it's own spring…
bilak
  • 4,526
  • 3
  • 35
  • 75
0
votes
1 answer

How to check active and inactive status of a togglz in a jsp?

I want to check active and inactive status of a toggle in a jsp.
Sumit Sundriyal
  • 815
  • 1
  • 11
  • 14
0
votes
1 answer

How to find the togglz url when integrating with spring-boot and jersey

My application based on spring-boot and jersey. I have configured togglz in my application. I can successfully launch my web application but running gradle bootRun. From the output during the startup, I am able to see below log message. But I am not…
Joey Yi Zhao
  • 37,514
  • 71
  • 268
  • 523
0
votes
1 answer

Error 404 when editing feature thru Togglz Admin Console

I'm using Togglz 2.0.1.Final, in a web application with Spring 4.0.5.RELEASE and Jetty 9.2.1.v20140609. When I try to edit a feature using Togglz Admin Console, the POST request receives an 404 status code. Request Headers POST /my-app/togglz/edit…
helenov
  • 341
  • 1
  • 2
  • 15
0
votes
2 answers

Togglz jetty9 embeded

How to run togglz with jetty 9 embeded. I tryed with follow code ServletHolder togglz = new ServletHolder(TogglzConsoleServlet.class); togglz.setInitParameter("org.togglz.core.manager.TogglzConfig",…
Rinat Mukhamedgaliev
  • 5,401
  • 8
  • 41
  • 59
-2
votes
1 answer

How to integrate togglz with spring-boot + jersey

My application is a Spring Boot + Jersey web app. I followed this official tutorial to integrate togglz with my Spring Boot application. I added the dependency togglz-spring-boot-starter to my project. But I always get below missing bean error when…
Joey Yi Zhao
  • 37,514
  • 71
  • 268
  • 523
1 2 3 4
5