79091300

Date: 2024-10-15 18:38:01
Score: 1
Natty:
Report link

Aha-- the problem was that I added a new class in my Guice module and registered it with just a regular bind( ) call. The class actually relies on an @Assisted factory constructor, so I needed to register it with Guice via something like this:

install(new FactoryModuleBuilder().build(APNSThreadWorker.Factory.class));

Once I did that, the .war deployed correctly. Whew.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Roy Wood