Spring Operator
Spring Operator
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Moving to `General Backlog` as `Won't Fix` candidate, as far as the SpEL function can be configured via `SpelFunctionFactoryBean` from JavaConfig. Need more votes to do this.
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented In addition we have to think about some support beans: `StoredProcExecutor`, `JpaExecutor` etc. Maybe they should be registered as `BeanDefinitionHolder` as it is for chain handlers now......
**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented Yeah - I am thinking we'd need to do something like add an overridable method `removeChildBeanDefinitionsFor(String id)` - then chains etc can add an implementation to clean...
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Of course, this method can contain `registry.removeBeanDefinition(handlerBeanName)` and can be overrided in the `ChainParser` to get deal with its handlerList. I mean it is up to concrete...
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented I think this is the fact of revising parser for this extra option: ```java /** * Set the name of the parent definition of this bean definition....
**[Joseph](https://jira.spring.io/secure/ViewProfile.jspa?name=fawzyj)** commented this will be perfect if combined with the java flow definition
**[Eoin Mac Ionmhain](https://jira.spring.io/secure/ViewProfile.jspa?name=erevmi)** commented Hi Keith, I've found what I believe is a workaround on this issue, which you might find handy. (or else unpleasantly hacky :) As you may...
**[Rossen Stoyanchev](https://jira.spring.io/secure/ViewProfile.jspa?name=rstoya05-aop)** commented Seems reasonable.
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Hello Maybe this will be enough: ```java Field jmsTemplateField = ReflectionUtils.findField(AbstractJmsChannel.class, "jmsTemplate"); jmsTemplateField.setAccessible(true); JmsTemplate jmsTemplate = Mockito.mock(JmsTemplate.class); ... ReflectionUtils.setField(jmsTemplateField , jmsChannel, jmsTemplate ); ``` ?
**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Sorry, you comment does not make sence for. The JMS interaction isn't possible without `javax.jms.ConnectionFactory`. What will be the reason to send messages to the `JmsOutboundGateway` within...