Когда я добавляю поддержку Hystrix в проект весенней загрузки kotlin, некоторые поля абстрактного класса внезапно становятся пустыми.Похоже, что прокси-сервер Hystrix неправильно обрабатывает поля:
У меня есть абстрактный класс kotlin ClientHandler
, имеющий два поля logger
и test
, которые непосредственно инициализируются.У меня есть подкласс kotlin SomeHandler
из ClientHandler
, который я использую с помощью автопроводки в классе.Как и ожидалось, при использовании подкласса два поля инициализируются.
Но когда я добавляю поддержку Hystrix (раскомментируйте @EnableHystrix
и @HystrixCommand
), два поля logger
и test
в абстрактном классе неожиданно обнуляются.
У вас есть идеи, почему это происходит?Spring добавляет прокси-класс к классу SomeHandler
, Hystrix делает то же самое.Итак, я полагаю, что что-то идет не так в двойном проксировании в комбинации с Kotlin !?Я сделал то же самое с классом Java, и все прошло нормально.
package com.test
import mu.KotlinLogging
import org.springframework.stereotype.Component
import java.lang.RuntimeException
abstract class ClientHandler {
protected val logger = KotlinLogging.logger {}
private val test = "test"
//@HystrixCommand(commandKey = "Some Service")
fun send(communication: Communication): ResponseObject {
try {
return callApi(communication)
} catch (e: Exception) {
logger.warn("Could not send information", e)
return ResponseObject()
}
}
protected abstract fun callApi(communication: Communication): ResponseObject
}
@Component
class SomeHandler : ClientHandler() {
override fun callApi(communication: Communication): ResponseObject {
throw RuntimeException()
}
}
class Communication {
}
class ResponseObject {
}
Приложение
package com.test
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.runApplication
//@EnableHystrix
@SpringBootApplication
class SomeApplication {
fun main(args: Array<String>) {
runApplication<SomeApplication>(*args)
}
}
Тест
package com.test
import org.hibernate.validator.internal.util.Contracts.assertNotNull
import org.junit.Test
import org.junit.runner.RunWith
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.test.context.junit4.SpringRunner
@RunWith(SpringRunner::class)
@SpringBootTest
class CustomerApiImplTest {
@Autowired
private lateinit var someHandler: SomeHandler
@Test
fun testIt() {
val communication = Communication()
val responseEntity = someHandler.send(communication)
assertNotNull(responseEntity)
}
}
Pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.3.RELEASE</version>
</parent>
<properties>
<kotlin.version>1.3.21</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>io.github.microutils</groupId>
<artifactId>kotlin-logging</artifactId>
<version>1.6.25</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
<version>2.1.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceDirs>
<source>src/main/java</source>
<source>target/generated-sources/swagger/src/gen/java/main</source>
</sourceDirs>
</configuration>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
<args>
<arg>-Xjsr305=strict</arg> <!-- Enable strict mode for JSR-305 annotations -->
</args>
<compilerPlugins>
<plugin>spring</plugin>
</compilerPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>testCompile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>