feature toggle
1.0.0
This is a simple library firstly finished when I was attending TWU 42, and thanks to Junior Ales my trainer, this is distributed as an open source project.
Add your feature toggle setting to features.properties resource file,
either turn it on or off, you can simply control a feature show or not.
Check example folder to see how to use.
Simply you can just do gradle jar, and copy to WEB-INF/libs, then
add
<jsp-config>
<taglib>
<taglib-uri>http://hjk.kimleo.net/tlds/featureToggle</taglib-uri>
<taglib-location>WEB-INF/lib/feature-toggle.jar</taglib-location>
</taglib>
</jsp-config>to your web.xml. then you can use this as a taglib in JSP pages.
Check example/web/index.jsp to see how to use in JSP file.