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

Reply via email to