OK, that will be because there is a ref in my fragment to config and
presumably you have not defined a bean with that ID. Importantly, you
already had config that worked for you, just wrap pass the service to the
WrappingBootstrapper. Sorry I didn't jsut say that in the first place.
<bean id="graphDatabaseService" class=
"org.springframework.data.neo4j.support.GraphDatabaseServiceFactoryBean"
destroy-method="shutdown" scope="singleton">
<constructor-arg value="mygraphdb"/>
<constructor-arg>
<map>
<entry key="enable_remote_shell" value="true"/>
<entry key="allow_store_upgrade" value="true"/>
</map>
</constructor-arg>
</bean>
<bean id="serverWrapper" class=
"org.neo4j.server.WrappingNeoServerBootstrapper" init-method="start"
destroy-method="stop">
<constructor-arg ref="graphDatabaseService"/>
</bean>
On Wednesday, 22 October 2014 16:29:27 UTC+1, Florian Oliver wrote:
>
> Error creating bean with name 'graphDatabaseService' defined in URL
> [context.xml]: Unsatisfied dependency expressed through constructor
> argument with index 1 of type [java.util.Map]: Ambiguous constructor
> argument types - did you specify the correct bean references as constructor
> arguments
>
> Le mercredi 22 octobre 2014 17:21:18 UTC+2, Florian Oliver a écrit :
>>
>> <bean id="graphDatabaseService"
>> class="org.neo4j.kernel.EmbeddedGraphDatabase">
>> <constructor-arg value="graph.db"/>
>> </bean>
>>
>> <bean id="serverWrapper"
>> class="org.neo4j.server.WrappingNeoServerBootstrapper" init-method="start"
>> destroy-method="stop">
>> <constructor-arg ref="graphDatabaseService"/>
>> </bean>
>>
>> It fails it cannot autowired anything with this config :O
>>
>>
>> Le mercredi 22 octobre 2014 16:26:44 UTC+2, Mark Findlater a écrit :
>>>
>>> Check out the answer to this SO question:
>>> http://stackoverflow.com/questions/8111959/use-wrappingneoserverbootstrapper-with-spring-data-neo4j
>>>
>>> I do not think anything has changed. Essentially you are using the
>>> WrappingNeoServerBootstrapper class to start an embedded Jetty server.
>>>
>>> M
>>>
>>> On Wednesday, 22 October 2014 14:54:55 UTC+1, Florian Oliver wrote:
>>>>
>>>> Hello,
>>>>
>>>> I would like to know how to enable rest and web interface (admin
>>>> interface) thanks to spring data neo4j.
>>>>
>>>> My context.xml :
>>>> <bean id="graphDatabaseService"
>>>> class="org.springframework.data.neo4j.support.GraphDatabaseServiceFactoryBean"
>>>> destroy-method="shutdown" scope="singleton">
>>>> <constructor-arg value="mygraphdb"/>
>>>> <constructor-arg>
>>>> <map>
>>>> <entry key="enable_remote_shell" value="true"/>
>>>> <entry key="allow_store_upgrade" value="true"/>
>>>> </map>
>>>> </constructor-arg>
>>>> </bean>
>>>>
>>>> When I launch localhost:7474 it doesn't work. (everything is fine
>>>> concerning my webapp create delete ...)
>>>>
>>>> Thanks in advance
>>>>
>>>
--
You received this message because you are subscribed to the Google Groups
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.