Advertisement
bungrudi

Untitled

Jun 8th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. @Service
  2. public class IntegrationService {
  3.     @Autowired
  4.     StockService stockService;
  5.  
  6.     @Autowired
  7.     SessionFactory sessionFactory
  8.  
  9.     @Transactional
  10.     public void doSomething() {
  11.         StockIssue issue = stockService.getStockIssue();
  12.         Session s = sessionFactory.openSession();
  13.         s.merge(issue);
  14.         issue.getStockTransactionHeaderBatches();
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement