Introduce @Proxyable annotation for bean-specific proxy type

Closes gh-35296
See gh-35293
This commit is contained in:
Juergen Hoeller
2025-08-06 18:26:40 +02:00
parent 9edb96ae57
commit df86a9973d
8 changed files with 175 additions and 22 deletions
@@ -33,6 +33,7 @@ import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.MessageSource;
import org.springframework.context.annotation.DependsOn;
import org.springframework.context.annotation.Lazy;
import org.springframework.context.annotation.Primary;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.core.io.ResourceLoader;
import org.springframework.core.io.support.ResourcePatternResolver;
@@ -43,7 +44,7 @@ import org.springframework.util.Assert;
* @author Mark Fisher
* @author Juergen Hoeller
*/
@Service @Lazy @DependsOn("myNamedComponent")
@Service @Primary @Lazy @DependsOn("myNamedComponent")
public abstract class FooServiceImpl implements FooService {
// Just to test ASM5's bytecode parsing of INVOKESPECIAL/STATIC on interfaces
@@ -0,0 +1,46 @@
/*
* Copyright 2002-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package example.scannable;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Future;
import org.springframework.context.annotation.Proxyable;
import org.springframework.stereotype.Service;
/**
* @author Juergen Hoeller
*/
@Service @Proxyable(interfaces = FooService.class)
public class OtherFooService implements FooService {
@Override
public String foo(int id) {
return "" + id;
}
@Override
public Future<String> asyncFoo(int id) {
return CompletableFuture.completedFuture("" + id);
}
@Override
public boolean isInitCalled() {
return false;
}
}