Skip to content

Instantly share code, notes, and snippets.

@raviyasas
Created December 17, 2021 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raviyasas/b30362c09c5b8bb5e2d97770c9cd19a2 to your computer and use it in GitHub Desktop.
Save raviyasas/b30362c09c5b8bb5e2d97770c9cd19a2 to your computer and use it in GitHub Desktop.
@Service
public class EmployeeService {
@Autowired
private AccountService accountService;
@Transactional
public void getAccountDetails() {
accountService.createAccountDocument();
}
}
@Service
public class AccountService {
@Transactional
public void createAccountDocument() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment