You are right, I had a typo in original post (I edited it now to reflect correct configuration). I'm injecting repository using @Resource(name="repositoryName"). This workaround seems to be working...
Type: Posts; User: knesek1; Keyword(s):
You are right, I had a typo in original post (I edited it now to reflect correct configuration). I'm injecting repository using @Resource(name="repositoryName"). This workaround seems to be working...
Hmm, @Resource annotation is an annotation from javax.annotation package that seems to be a part of JDK. Are you
sure you have imported the right annotation? ( e.g. import javax.annotation.Resource;...
Hi,
thanks for the info.
Anyhow - the default location Spring Shell looks for application context configuration file (classpath:/META-INF/spring/spring-shell-plugin.xml) is hardcoded in the...
It's a late reply but perhaps it helps someone else... Had the same issue and resolved it by adding this to my pom.xml (into repositories section):
<repository>
<snapshots>
...
Hello,
thanks for a very helpful project!
I would like to contribute to it (with a friendlier bootstrapping procedure), is there a mailing list where I could jump in or other communication...
I have hit this problem too - thanks for the workaround.
I am currently working around this by injecting the repository with
@Resource(name="personRepository")
PersonRepository...