Alexandr Fedotov created IGNITE-6555:
----------------------------------------
Summary: When a CacheStore with a @SpringResource annotated field is configured Ignite fails to start via igniteSpringBean
Key: IGNITE-6555
URL:
https://issues.apache.org/jira/browse/IGNITE-6555 Project: Ignite
Issue Type: Bug
Components: spring
Affects Versions: 2.2
Reporter: Alexandr Fedotov
Fix For: 2.4
When a CacheStore with a @SpringResource annotated field is configured Ignite fails to start via igniteSpringBean.
Example configuration leading to the failure is as follows
{code:java}
public class SpringIgniteCacheStore<K, V> extends CacheStoreAdapter<K, V> implements Serializable {
@SpringResource(resourceClass = SomeDao.class)
public transient SomeDao someDao;
...
}
@Configuration
public class IgniteSpringConfig {
@Bean
public IgniteSpringBean igniteSpringBean() {
IgniteSpringBean igniteSpringBean = new IgniteSpringBean();
...
return igniteSpringBean;
}
...
}
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)