如何将CRUDRepository接口注入我的util类

时间:2018-05-27 09:47:31

标签: hibernate spring-boot spring-data-jpa autowired interceptor

我真的不知道为什么我的CRUDRepository界面无法注入。

我在Spring Boot上有一个小应用程序并使用CrudRepository:

public interface ActionLogRepository extends CrudRepository<ActionLog, Integer> {
}

在我的服务类中,我有一个方法:

@Service
public class ActionRecordServiceImpl implements ActionRecordService {

 @Override
    @Transactional
    public void deleteActionRecord(Date date, String domain) {

        Set<Action> actions= myActions...(the code delibrately shortened)

        for (Action a : actions) {
                actionRepository.delete(a);
            }
        }
    }
}

接下来我有我的拦截器 - 我想捕获所有删除操作并将这些日志保存在数据库中:

public class ActionTrackerInterceptor extends EmptyInterceptor {

    // called when record is deleted.
    public void onDelete(Object entity, Serializable id, Object[] state,
            String[] propertyNames, Type[] types) {
        Action act = (Action) entity;
        String action = "DELETED";
        ActionLog actionLog = new ActionLog(...some data inserted...);

        MyActionLogUtil util = new MyActionLogUtil();
        util.logIt("DELETED", actionLog);
        actionLogRepository.save(actionLog);
        System.out.println("Record " + entity + " is deleted.");
    }

我的方法util.LogIt看起来像:

@Component
public class MyActionLogUtilImpl implements ActionyLogUtil {

    private ActionLogRepository actionLogRepository;

    @Autowired
    public void setActionLogRepository(ActionLogRepository actionLogRepository) {
        this.actionLogRepository = actionLogRepository;
    }

    @Override
    public void logIt(String action, ActionLog entity) {

        try {
            ActionLog actionLog = null; // = new ActionLog(...some data inserted...)
            actionLogRepository.save(actionLog);

        } finally {

        }
    }
}

当我的应用程序启动时,设置MyActionLogUtilImpl中的方法setActionLogRepository并正确注入ActionLogRepository(非空值)。但是在调试时,方法MyActionLogUtilImpl.LogIt IS MY actionLogRepository为NULL!

我的主要类@SpringBootApplication位于包的顶部,因此ComponentScan问题不是重点。

问题是为什么?另一笔交易?我真的不知道问题是什么。我已经阅读了互联网上所有类似的主题......请帮帮我。谢谢。

此致 Matley

1 个答案:

答案 0 :(得分:1)

ActionTrackerInterceptor

MyActionLogUtil util = new MyActionLogUtil();

您正在创建&#34; Util&#34;的新实例。手动而不是使用在应用程序启动时创建的Spring(实际上对您的存储库有正确的引用)。

它不是关于交易管理,而是关于核心DI功能。请务必阅读Spring docs,了解DI的工作原理。