Hello!

Here is the error that you are seeing:

ignite 13:25:25.163 [main] WARN 
o.s.b.c.e.AnnotationConfigEmbeddedWebApplicationContext - Exception
encountered during context initialization - cancelling refresh attempt:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'fileController': Unsatisfied dependency expressed
through field 'alarmRecordFileService'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'alarmRecordFileService': Unsatisfied dependency
expressed through field 'alarmService'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'alarmService': Unsatisfied dependency expressed
through field 'template'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'igniteJdbcTemplate': Unsatisfied dependency
expressed through field 'sqlEntityQueue'; nested exception is
org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'sqlEntityQueue' defined in URL
[jar:file:/root/ignite/ignite-0.3.0-SNAPSHOT.jar!/BOOT-INF/classes!/com/samples/vehicles/ignite/sql/SqlEntityQueue.class]:
Initialization of bean failed; nested exception is
java.lang.NoClassDefFoundError: org/springframework/scheduling/Trigger

As you can see, it is unrelated to Ignite. Your SqlEntityQueue class could
not be created because it has missing Trigger dependency, which is not on
classpath.

Unfortunately, you did not provide parent POM, so it's hard to say why this
dependency is unsatisfied.
It should be handled with
       <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

Regards,



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to