I have Aspect in Spring that performs methods execution as "save(Answer)" from repository. How to correctly pass the Answer object argument in the following case:
@Before("com.examination.repository.AnswerRepository.save(answer)........//here to be continued
private void save(Answer entity) throws Throwable
{ ...}