Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Play 2.4,在添加新的依赖注入模块后,我得到了这个错误:
No implementation for play.api.Application was bound.
如何解决这个问题?
在application/conf:
application/conf
play.modules.enabled = ...
本来应该:
play.modules.enabled += ...
保留 Play 自己的模块列表,包括 play.api.Application并附加到它而不是替换。
play.api.Application