[JAVA-29178] Upgrade Spring AOP 2 module to Spring Boot 3 (#15561)
This commit is contained in:
parent
0d48dd5439
commit
b467eb65f6
|
@ -9,9 +9,9 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-boot-2</artifactId>
|
<artifactId>parent-boot-3</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../parent-boot-2</relativePath>
|
<relativePath>../parent-boot-3</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -27,6 +27,16 @@
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-aop</artifactId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
<version>${commons-lang3.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-rng-simple</artifactId>
|
||||||
|
<version>${commons-rng-core.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-test</artifactId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
@ -164,6 +174,8 @@
|
||||||
<properties>
|
<properties>
|
||||||
<aspectj-plugin.version>1.14.0</aspectj-plugin.version>
|
<aspectj-plugin.version>1.14.0</aspectj-plugin.version>
|
||||||
<spring.version>5.3.27</spring.version>
|
<spring.version>5.3.27</spring.version>
|
||||||
|
<start-class>com.baeldung.Application</start-class>
|
||||||
|
<commons-rng-core.version>1.5</commons-rng-core.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
|
@ -1,11 +1,14 @@
|
||||||
package com.baeldung.method.info;
|
package com.baeldung.method.info;
|
||||||
|
|
||||||
import org.apache.commons.lang3.RandomUtils;
|
import org.apache.commons.rng.UniformRandomProvider;
|
||||||
|
import org.apache.commons.rng.simple.RandomSource;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@Component
|
@Component
|
||||||
public class BankAccountService {
|
public class BankAccountService {
|
||||||
|
|
||||||
|
private final UniformRandomProvider rng = RandomSource.XO_RO_SHI_RO_128_PP.create();
|
||||||
|
|
||||||
@AccountOperation(operation = "deposit")
|
@AccountOperation(operation = "deposit")
|
||||||
public void deposit(Account account, Double amount) {
|
public void deposit(Account account, Double amount) {
|
||||||
account.setBalance(account.getBalance() + amount);
|
account.setBalance(account.getBalance() + amount);
|
||||||
|
@ -23,7 +26,7 @@ public class BankAccountService {
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getBalance() {
|
public double getBalance() {
|
||||||
return RandomUtils.nextDouble();
|
return rng.nextDouble();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@ import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
@SpringBootTest
|
@SpringBootTest
|
||||||
|
@ -26,20 +27,20 @@ class BankAccountServiceIntegrationTest {
|
||||||
@Test
|
@Test
|
||||||
void withdraw() {
|
void withdraw() {
|
||||||
bankAccountService.withdraw(account, 500.0);
|
bankAccountService.withdraw(account, 500.0);
|
||||||
assertTrue(account.getBalance() == 1500.0);
|
assertEquals(1500.0, account.getBalance());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void withdrawWhenLimitReached() {
|
void withdrawWhenLimitReached() {
|
||||||
Assertions.assertThatExceptionOfType(WithdrawLimitException.class)
|
Assertions.assertThatExceptionOfType(WithdrawLimitException.class)
|
||||||
.isThrownBy(() -> bankAccountService.withdraw(account, 600.0));
|
.isThrownBy(() -> bankAccountService.withdraw(account, 600.0));
|
||||||
assertTrue(account.getBalance() == 2000.0);
|
assertEquals(2000.0, account.getBalance());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void deposit() {
|
void deposit() {
|
||||||
bankAccountService.deposit(account, 500.0);
|
bankAccountService.deposit(account, 500.0);
|
||||||
assertTrue(account.getBalance() == 2500.0);
|
assertEquals(2500.0, account.getBalance());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -3,7 +3,7 @@ package com.baeldung.selfinvocation;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
package com.baeldung.selfinvocation;
|
package com.baeldung.selfinvocation;
|
||||||
|
|
||||||
|
import jakarta.annotation.Resource;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
|
@ -4,7 +4,7 @@ import com.baeldung.Application;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.assertThat;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
|
Loading…
Reference in New Issue