我正在使用wicket 1.4.9现在迁移到更新的版本7或6, 如何使用6.6.0中的以下代码
protected IRequestCycleProcessor newRequestCycleProcessor() {
return new WebRequestCycleProcessor() {
protected IRequestCodingStrategy newRequestCodingStrategy() {
return new CryptedUrlWebRequestCodingStrategy(super.newRequestCodingStrategy());
}
};
}
答案 0 :(得分:1)
您需要CryptoMapper。
要配置它,请在YourApplication#init()方法中添加以下内容:
setRootRequestMapper(new CryptoMapper(getRootRequestMapper(), this));
答案 1 :(得分:1)
我正在使用Wicket 7在您的应用程序中尝试此操作;
setRootRequestMapper(new CryptoMapper(getRootRequestMapper(),this));