如何解决如何在Spring JPA保存方法中添加用户定义注释
仅在spring jpa save方法中如何添加用户定义注释。
我已经创建了一个注释,并希望在存储库的save方法上使用它,但是save方法是JPA的CrudRepository的继承方法,不确定如何将注释仅应用于该方法,而不能应用于其他方法。该存储库。
尝试在存储库界面中覆盖该方法并应用了注释,但没有成功
请参考下面的代码-
注释:
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}
@Aspect
@Configuration
@Slf4j
@ComponentScan(value = "com.somepackage.service")
public class MyAnnotationInterceptor {
@Value("${val}")
private String val;
@Around("@annotation(com.somepackage.service.application.annotation.MyAnnotation)")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
if("TEST".equalsIgnoreCase(val)){
log.info("Test Event")
}else{
joinPoint.proceed();
}
}
}
存储库:
@Transactional
public interface EmployeeEntityRepository extends CrudRepository<EmployeeEntity,String> {
List<EmployeeEntity> findAllByEmpIdAndStatusNot(String empId,String status);
@Query("SELECT emp.empId FROM EmployeeEntity emp WHERE emp.orderId IN ?1")
List<String> findEmployeeIds(List<String> orderIds);
@Override
@MyAnnotation
<S extends EmployeeEntity> Iterable<S> save(Iterable<S> iterable);
}
服务等级:
class EmployeeService {
@Autowired
EmployeeEntityRepository employeeEntityRepo;
public void saveEmployee(List<EmployeeEntity> employeeData) {
employeeEntityRepo.save(employeeData);
employeeEntityRepo.clearCache(employeeData);
/***
.
.
.
Some other logic calculations
.
.
***/
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。