> One comment I have about classpath scanning is that *if* it turns out
> to be a nightmare, you could go the route of Hibernate where you have
> to register what annotated pages you want to support.  ex:
>
> public class MyWebApplication extends Application {
>   public void init() {
>     registerAnnotatedWebPage(MyWebPage.class);
>     registerAnnotatedWebPage(SecondPage.class);
>    ..etc..
>   }
> }

Yeah, that's a good alternative.

Eelco

Reply via email to