Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue with ksp and nested interfaces while using @ConfigurationProperties - works with kapt but not KSP #11575

Open
brenol opened this issue Feb 7, 2025 · 1 comment
Assignees

Comments

@brenol
Copy link

brenol commented Feb 7, 2025

Expected Behavior

Application should run correctly, load configuration and not crash.

Actual Behaviour

Application crashes with the following error:

Message: Receiver class com.example.BaseConfiguration$Intercepted does not define or inherit an implementation of the resolved method 'abstract java.lang.String getHost()' of interface com.example.Other.
Path Taken: new MyClass(BaseConfiguration baseConfiguration)
        at io.micronaut.context.DefaultBeanContext.resolveByBeanFactory(DefaultBeanContext.java:2349)
        at io.micronaut.context.DefaultBeanContext.doCreateBean(DefaultBeanContext.java:2304)
        at io.micronaut.context.DefaultBeanContext.doCreateBean(DefaultBeanContext.java:2316)
        at io.micronaut.context.DefaultBeanContext.createRegistration(DefaultBeanContext.java:3127)

Steps To Reproduce

Run ./gradlew run on the repository.

There is also a kapt configuration on build.gradle.kts. Just comment KSP and change to kapt.

Environment Information

Linux, Ubuntu 20.04 x86 x64
openjdk version "21.0.1" 2023-10-17 LTS
OpenJDK Runtime Environment Corretto-21.0.1.12.1 (build 21.0.1+12-LTS)

Example Application

https://github.com/brenol/micronaut-ksp-interface

Version

4.7.5

@altro3
Copy link
Contributor

altro3 commented Feb 19, 2025

@dstepanov look to this, pls. Confirmed it is a bug. Checked it with micronaut 4.8.3. Errro with introspection:

Classes structures:

fun main(args: Array<String>) {
	ApplicationContext.builder().banner(false)
		.eagerInitConfiguration(true)
		.eagerInitSingletons(true)
		.build()
		.start()
}

@Controller("/")
open class MyClass(private val baseConfiguration: BaseConfiguration) {
	init {
		println("Host: ${baseConfiguration.host}")
		println("Port: ${baseConfiguration.port}")
	}

	@Get
	fun test() {
		println("Host: ${baseConfiguration.host}")
		println("Port: ${baseConfiguration.port}")
	}
}

@ConfigurationProperties("base")
interface BaseConfiguration : Other {
	val port: Int
}

interface Other {
	val host: String
}

BaseConfiguration$Intercepted (left is KSP, right KAP):

Image

$BaseConfiguration$Intercepted$Definition$Exec:

Image

$BaseConfiguration$Intercepted$Definition

Image

KSP added this line: DefaultAnnotationMetadata.registerAnnotationType($micronaut_load_class_value_0());
KAPT: DefaultAnnotationMetadata.registerAnnotationDefaults($micronaut_load_class_value_0(), Map.of("bean", false, "iterable", false));

@dstepanov maybe this is another bug

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants