It's not HiveMind, its Tapestry 5 IoC.

Yes, there's explicit configuration.
http://tapestry.apache.org/tapestry5/guide/conf.html

On Thu, Dec 4, 2008 at 5:01 PM, Luther Baker <[EMAIL PROTECTED]> wrote:
> I've create a simple Module class that has a static bind method. I've placed
> the class in the *.services package.
>
> package my.app.services;
>
> public class MyAppModule
> {
>  public static void bind(ServiceBinder binder)
>  {
>  binder.bind(ProjectManager.class, SimpleProjectManager.class);
>  }
> }
>
> In a different Java class, I have
>
> @Inject
>
> private ProjectManager projectManager;
>
> But, when startup always complains ClassNotFound. Are there some explicit
> IoC configuration (files, classnames, etc) directions? I'm not sure what
> HiveMind is looking for ... Is it something anything in the 'services'
> package? or something name based? Links?
>
> Thanks,
>
> -Luther
>



-- 
Howard M. Lewis Ship

Creator Apache Tapestry and Apache HiveMind

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to