Changes between Version 8 and Version 9 of WikiStart/Development
- Timestamp:
- 04/03/25 12:08:07 (29 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart/Development
v8 v9 47 47 private TransactionRepository transactionRepository; 48 48 49 49 @Transactional 50 50 public Account findAccountByUsername(String username) { 51 51 return accountRepository.findByUsername(username).orElseThrow(() -> new RuntimeException("Account not found")); 52 52 } 53 53 54 @Transactional 54 55 public Account registerAccount(String username,String email, String password) { 55 56 if (accountRepository.findByUsername(username).isPresent()) { … … 65 66 } 66 67 67 68 @Transactional 68 69 public void deposit(Account account, BigDecimal amount) { 69 70 account.setBalance(account.getBalance().add(amount)); … … 80 81 } 81 82 83 @Transactional 82 84 public void withdraw(Account account, BigDecimal amount) { 83 85 if (account.getBalance().compareTo(amount) < 0) { … … 97 99 } 98 100 101 102 @Transactional 99 103 public List<Transaction> getTransactionHistory(Account account) { 100 104 return transactionRepository.findByAccountId(account.getId()); 101 105 } 102 106 107 @Transactional 103 108 @Override 104 109 public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { … … 121 126 } 122 127 123 128 129 @Transactional 124 130 public void transferAmount(Account fromAccount, String toUsername, BigDecimal amount, String currency) { 125 131