In wicket 1.2.x it was possilbe to switch the mode in the application 
construktor like
 
public class MyApplication extends WebApplication{
     public MyApplication() {
          configure(Application.DEPLOYMENT);
}
 
now this leads tho an exception during deployment
 
     wicket.WicketRuntimeException: Use Application.init() method for 
configuring your application object
        at wicket.Application.getSettings(Application.java:543)
        at wicket.Application.getResourceSettings(Application.java:499)
        at wicket.Application.configure(Application.java:338)
        at wicket.Application.configure(Application.java:298)
 
if I move the call of "configure" to the init method the message
 
     You are in DEVELOPMENT mode
 
appears during deployment. What is the correct way to switch to deployment mode 
while application initialization/deployment?
 

<<winmail.dat>>

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to