Closed spring-projects-issues closed 6 years ago
Mark Paluch commented
This issue seems to be more generic than Spring Data Cassandra-specific. Please make sure that your CassandraConfig
class is annotated with @Configuration
and that your configuration class is registered in your Spring Context
Mark Paluch commented
Closing because of lacking feedback
David commented
i had same issue, in my case it is fixed by renaming the method:
@Bean
public CassandraAdminOperations cassandraAdminOperations() throws Exception {
return new CassandraAdminTemplate(session().getObject(), cassandraConverter());
}
Wali Usmani opened DATACASS-345 and commented
I have a bean defined in
CassandraConfig
(extendsAbstractCassandraConfiguration
)In the spring rest controller I am using :
Running Application gives me this error :
During debug, we saw that bean definition never gets called
Affects: 1.5 M1 (Ingalls)