Created on
09-26-2019
04:43 AM
- last edited on
09-26-2019
08:25 AM
by
ask_bill_brooks
In Nifi custom processor configuring some attributes as expressions to read values from variable registry, but it is reading expression itself instead of reading its value.
Example Code as below.
protected static final PropertyDescriptor HOST = new PropertyDescriptor.Builder()
.name("Feed URL")
.description("Feed Service Host")
.required(true)
.expressionLanguageSupported(ExpressionLanguageScope.VARIABLE_REGISTRY)
.addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
.build();
@Override
public void onTrigger(final ProcessContext context, ProcessSessionFactory sessionFactory) throws ProcessException {
final ComponentLog logger = getLogger();
try {
sessionFactoryReference.compareAndSet(null, sessionFactory);
String hostValue = context.getProperty(HOST).toString(); //
}
}
So from the above code if we print 'hostValue' its printing the expression as ${Feed-URL} instead of printing value of expression.
Created 09-26-2019 11:22 PM
Issue got resolved, below piece of code did the magic.
context.getProperty(HOST).evaluateAttributeExpressions().getValue();