Fadelis / grpcmock

A gRPC Java testing tool to easily mock endpoints of gRPC services for IT or Unit testing
http://grpcmock.org
Apache License 2.0
144 stars 13 forks source link

Replace @PostConstruct with InitializingBean #28

Closed genuss closed 1 year ago

genuss commented 1 year ago

Spring boot 3 upgraded from javax. to jakarta. classes for EE support. And if in a spring boot application there will be no old javax.* dependency, the @PostConstruct annotated methods won't be invoked. This small change allows init method to work in both spring boot 2 and 3 (and even spring boot 1.x 😄 ) What do you think?