-
Enterprise Java
Monitor full page, non AJAX, requests to be notified
Recently, working on new charts and chart “exporting service” in JSF, I’ve faced a quite common problem. When you execute…
Read More » -
Enterprise Java
Proper decoding of URL parameters on the server-side in JBoss
I spent many hours today to figure out how to force a proper decoding of encoded characters in JSF applications…
Read More » -
Enterprise Java
Multiple dynamic includes with one JSF tag
Every JSF developer knows the ui:include and ui:param tags. You can include a facelet (XHTML file) and pass an object,…
Read More » -
Enterprise Java
JSF: choice between legacy components and fashionable performance killers
This blog post was originated due to performance issues in one big web application. Everybody optimizes Java code, but it…
Read More » -
Enterprise Java
Passing complex objects in URL parameters
Imagine you would like to pass primitive data types, complex Java objects like java.util.Data, java.lang.List, generic classes, arrays and everything…
Read More » -
Enterprise Java
JSF – Eager CDI beans
Everybody knows eager managed beans in JSF 2. @ManagedBean has an eager attribute. If eager=’true’ and the scope is application,…
Read More » -
Enterprise Java
GET / POST with RESTful Client API
There are many stuff in the internet how to work with RESTful Client API. These are basics. But even though…
Read More » -
Enterprise Java
Configure timeout for CDI conversations
CDI conversation scope is a nice feature when developing JSF applications. Imagine you have large data tables which take a…
Read More » -
Enterprise Java
JSF Event-based communication: New-school approach
In the last post, we learnt event-based communication on basis of Observer / Event Listener and Mediator patterns. Due to…
Read More »