File tree Expand file tree Collapse file tree 12 files changed +20
-20
lines changed
platform/spring-boot-dependencies
smoke-test/spring-boot-smoke-test-aspectj
test/java/smoketest/aspectj
starter/spring-boot-starter-aspectj Expand file tree Collapse file tree 12 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -2078,8 +2078,8 @@ bom {
20782078 " spring-boot-starter-activemq" ,
20792079 " spring-boot-starter-actuator" ,
20802080 " spring-boot-starter-amqp" ,
2081- " spring-boot-starter-aop" ,
20822081 " spring-boot-starter-artemis" ,
2082+ " spring-boot-starter-aspectj" ,
20832083 " spring-boot-starter-batch" ,
20842084 " spring-boot-starter-cassandra" ,
20852085 " spring-boot-starter-cache" ,
Original file line number Diff line number Diff line change @@ -177,8 +177,8 @@ include "starter:spring-boot-starter"
177177include " starter:spring-boot-starter-activemq"
178178include " starter:spring-boot-starter-actuator"
179179include " starter:spring-boot-starter-amqp"
180- include " starter:spring-boot-starter-aop"
181180include " starter:spring-boot-starter-artemis"
181+ include " starter:spring-boot-starter-aspectj"
182182include " starter:spring-boot-starter-batch"
183183include " starter:spring-boot-starter-cache"
184184include " starter:spring-boot-starter-cassandra"
@@ -290,8 +290,8 @@ include ":smoke-test:spring-boot-smoke-test-actuator-noweb"
290290include " :smoke-test:spring-boot-smoke-test-actuator-ui"
291291include " :smoke-test:spring-boot-smoke-test-amqp"
292292include " :smoke-test:spring-boot-smoke-test-ant"
293- include " :smoke-test:spring-boot-smoke-test-aop"
294293include " :smoke-test:spring-boot-smoke-test-artemis"
294+ include " :smoke-test:spring-boot-smoke-test-aspectj"
295295include " :smoke-test:spring-boot-smoke-test-autoconfigure-classic"
296296include " :smoke-test:spring-boot-smoke-test-batch"
297297include " :smoke-test:spring-boot-smoke-test-bootstrap-registry"
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ plugins {
1818 id " java"
1919}
2020
21- description = " Spring Boot AOP smoke test"
21+ description = " Spring Boot AspectJ smoke test"
2222
2323dependencies {
24- implementation(project(" :starter:spring-boot-starter-aop " ))
24+ implementation(project(" :starter:spring-boot-starter-aspectj " ))
2525
2626 testImplementation(project(" :starter:spring-boot-starter-test" ))
2727}
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- package smoketest .aop ;
17+ package smoketest .aspectj ;
1818
19- import smoketest .aop .service .HelloWorldService ;
19+ import smoketest .aspectj .service .HelloWorldService ;
2020
2121import org .springframework .beans .factory .annotation .Autowired ;
2222import org .springframework .boot .CommandLineRunner ;
2323import org .springframework .boot .SpringApplication ;
2424import org .springframework .boot .autoconfigure .SpringBootApplication ;
2525
2626@ SpringBootApplication
27- public class SampleAopApplication implements CommandLineRunner {
27+ public class SampleAspectJApplication implements CommandLineRunner {
2828
2929 // Simple example shows how an application can spy on itself with AOP
3030
@@ -37,7 +37,7 @@ public void run(String... args) {
3737 }
3838
3939 public static void main (String [] args ) {
40- SpringApplication .run (SampleAopApplication .class , args );
40+ SpringApplication .run (SampleAspectJApplication .class , args );
4141 }
4242
4343}
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- package smoketest .aop .monitor ;
17+ package smoketest .aspectj .monitor ;
1818
1919import org .aspectj .lang .JoinPoint ;
2020import org .aspectj .lang .annotation .AfterReturning ;
Original file line number Diff line number Diff line change 1515 */
1616
1717@ NullMarked
18- package smoketest .aop . service ;
18+ package smoketest .aspectj . monitor ;
1919
2020import org .jspecify .annotations .NullMarked ;
Original file line number Diff line number Diff line change 1515 */
1616
1717@ NullMarked
18- package smoketest .aop ;
18+ package smoketest .aspectj ;
1919
2020import org .jspecify .annotations .NullMarked ;
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- package smoketest .aop .service ;
17+ package smoketest .aspectj .service ;
1818
1919import org .springframework .beans .factory .annotation .Value ;
2020import org .springframework .stereotype .Component ;
Original file line number Diff line number Diff line change 1515 */
1616
1717@ NullMarked
18- package smoketest .aop . monitor ;
18+ package smoketest .aspectj . service ;
1919
2020import org .jspecify .annotations .NullMarked ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments