Hi, We use Appfuse Struts 2 Modular in our application. Yesterday, a strange bug appeared. We got a jasperexception when we tried to go to the login page, the server message indicated that it couldn't compile the jsp into a class. Eventually, the source of the problem was tracked down to this line we had added to Constants.java: public static final boolean ADD_INVOICING = false;
There was no apparent connection with it and the bug. That particular variable was not even used anywhere in the application. Nonetheless, bug was fixed by changing this line to: public static final Boolean ADD_INVOICING = false; For some reason, it doesn't like primitives. Anyone have any idea what might be the reason? The bug is fixed; I'm just curious. Jukka
