ウィケットでmountPageを使用して、「/」URLをMainPageURLとしてマウントしようとしています。
私のWebApplicationは次のようになります。
public class WicketApplication extends WebApplication
{
@Override
public Class<HomePage> getHomePage()
{
return HomePage.class;
}
@Override
public void init()
{
super.init();
mountPages();
}
private void mountPages()
{
mountPage( "/home", HomePage.class );
mountPage( "/about", AboutCompany.class );
mountPage( "/prices", Prices.class );
mountPage( "/gallery", Gallery.class );
mountPage( "/contact", Contact.class );
mountPage( "/offer", Offer.class );
}
}
実際にはうまく機能しますが、「/home」を「/」に変更したいのですが、CSSを転送するのではなく、HomePage全体を転送するなど、CSSをかなり混乱させます。どうすればこれを思い通りに機能させることができますか?