0
私はakka-springbootアプリケーションを開始しました。私のサービスではautowiredは機能しません。akkaフレームワークアプリケーションを使用している春のブートでAutowiredフィールドはnullです
Persistence.java
public interface Persistence extends CrudRepository<message, String>{
}
workactor.java
@Component
@Scope("prototype")
public class workActor extends UntypedActor {
@Autowired
private Persistence persistence;
@Override
public void onReceive(Object message) throws Exception {
LOGGER.INFO("--->> " + persistence) // here i got null value
}
}
ガイド
@GangarajuこれはSpring Dataインターフェイスには必要ありません。 – dunni