Fwd: Spring application context resource is not injected exception while starting ignite in jdbc driver mode

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Fwd: Spring application context resource is not injected exception while starting ignite in jdbc driver mode

dmagda
Cross-posting to the dev list.

I’ve faced the same issue, filed a ticket with a reproducer and suggested a workaround:
https://issues.apache.org/jira/browse/IGNITE-4829 <https://issues.apache.org/jira/browse/IGNITE-4829>

*Alex K.*, could you please take care of the issue? If this is something we can’t fix quickly then Apache Ignite Web Console configuration wizard has to set the POJO store configuration differently.


Denis

> Begin forwarded message:
>
> From: san <[hidden email]>
> Subject: Spring application context resource is not injected exception while starting ignite in jdbc driver mode
> Date: August 24, 2016 at 6:27:47 AM PDT
> To: [hidden email]
> Reply-To: [hidden email]
>
> I am facing an issue while starting ignite in JDBC driver mode. i have my
> cache in remote node and i need to access using plain sql queries. Hence i
> am using ignite jdbc driver. please find the code snippet.  
>
> Class.forName("org.apache.ignite.IgniteJdbcDriver");
> Connection conn =
> DriverManager.getConnection("jdbc:ignite:cfg://ignite-jdbc.xml");
> ResultSet rs = conn.createStatement().executeQuery("select * from users");
>
> my xml also simple. since cache is already loaded in remote node.
>
>  <bean id="grid.cfg"
> class="org.apache.ignite.configuration.IgniteConfiguration">
>
>        <property name="clientMode" value="true"/>
>
>        <property name="localHost" value="127.0.0.1"/>
>
>
>
>        <property name="discoverySpi">
>            <bean
> class="org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi">
>                <property name="ipFinder">
>                    <bean
> class="org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder">
>                        <property name="addresses">
>                            <list>
>                                <value>127.0.0.1:47500..47549</value>
>                            </list>
>                        </property>
>                    </bean>
>                </property>
>            </bean>
>        </property>
>
> please do the needful..
>
>
>
>
> --
> View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Spring-application-context-resource-is-not-injected-exception-while-starting-ignite-in-jdbc-driver-me-tp7272.html
> Sent from the Apache Ignite Users mailing list archive at Nabble.com.