tl;dr: I get an exception: Index 0 not valid
Using spring-data neo4j, I have 2 node entities: snippet and person. Each snippet has an author. Following are the classes and then the test and...
Type: Posts; User: ittay; Keyword(s):
tl;dr: I get an exception: Index 0 not valid
Using spring-data neo4j, I have 2 node entities: snippet and person. Each snippet has an author. Following are the classes and then the test and...
Hi,
Where can I find examples of an application using JPA inside spring-dm?
Thank you,
Ittay
Hi,
This is partially a general Spring question
I want a @Bean method to return a list of beans (so that the container configures each, in particular, if they are a XxxAwareBean, call the right...
Hi Costin,
In theory, you are right. In practice, if you create a method in the configuration class that returns a FactoryBean, then in many cases that FactoryBean will not be configured correctly...
Unfortunately, it seems that factory beans cannot be used reliably in javaconfig. see http://jira.springframework.org/browse/SJC-259 and http://jira.springframework.org/browse/SJC-260. Furthermore,...
ok, created http://jira.springframework.org/browse/SPR-5611
Hi,
How can I put an annotation on a @Bean method, so I can post process the bean/beandef with the data in the annotation?
If I try to post process the bean/factory in the standard way, I...
i'm running with trace level and don't see a message.
i'm not against having the application start when all required services have been matched, but my example shows a case where this matching can...
the issue was that i had a list reference of 1..N but no bundle published a suitable service.
1. it wasn't obvious from the log messages, i had to dig in the code and realize that the fact that...
Hi,
I have two bundles where completeRefresh is not called (and so some beans are not initialized). The log message 'Pre-refresh completed' appears, but not 'Completing refresh' (both from...
Hi,
I'm new to spring, spring-config and spring-dm, so please forgive me if this is a trivial question.
How do I integrate JavaConfig to run inside spring-dm (1.2.0Mx)? Do I need to implement...
Hi,
I have an object created by an unmanaged framework and I want to use spring to configure its dependencies. My problem is how to get a reference the application context (or bundle context).
...
I couldn't find samples in the web site or the download packages
Hi,
Is there an integration between spring and jpf (java plugin framework)?
Thanx,
ittay
sorry, i couldn't find anything in jira, could you please point me to the relevant posts?
and also, if using springs terms, i'd expect a user to be able to write an xml file with *his* beans, but...
A plugin scenario is something like this:
1. i have an application with a navigation bar
2. i want to enable clients to add items to the navigation bar
a. let them write some specification for...
Hi,
Assume I have an object that is not a java bean, but has the same capabilities, meaning, a way of getting / setting values by introspection. The simplest example is an object that holds all...