``` @Value("${spring.artemis.host}:${spring.artemi...
# announcements
x
Copy code
@Value("${spring.artemis.host}:${spring.artemis.port}"
kotlin says string must be a compile time constant, this should be valid in java, how do I write it in kotlin?
m
You need to escape the $ so that kotlin isn't attempting to replace the variables.
👍 2