Spring Cloud Stream solace error handling

Hi @msharpe ,
If I’m understanding correctly you have a JVM system property that you want to use inside of the @ServiceActivator > annotation, correct?
I haven’t tried it, but I’m assuming something like this doesn’t work?
@ServiceActivator(inputChannel = “#{systemProperties[‘your.system.property’]}”)
If not, can you see if this solution where you add a @Bean that returns PropertySourcesPlaceholderConfigurer works?
How to load a System property in Spring using annotations?
I have an issue with Spring, I have to load a system property using an annotation.

I’m trying this approach:

@Value(“${mySystemProperty}”)
private String mySystemPropertyValue;
But when I make t…
Hope that helps!