2
votes
4answers
58 views

Does Maven need to explicitly specify the dependency that Spring/Hibernate dependented?

I'm new to Maven, I try to use Maven with Spring, Hibernate in my project. After go though the Spring and Hibernate reference, I found that "there is no need to explicitly specify the dependent ...
0
votes
0answers
54 views

maven spring dependency issue

I have the following in my pom.xml. <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> ...
-3
votes
2answers
57 views

Suggestions for using spring in fairly small project [closed]

I am working on a small java application and I was considering using Spring IOC in it. I am new to Spring. Please suggest if it would be better to go with Spring or not. In my use case there are only ...
1
vote
1answer
238 views

Spring-free Hibernate DAO and @Repository for Exception translation! Isn't that dependency?

I've read that the new way of creating Hibernate DAO is using Hibernate contextual sessions. The main reason being to avoid the Spring based HibernateTemplate/HiberateDaoSupport and thus Spring-Free ...
1
vote
2answers
124 views

Spring Dependency Injection stopped working

I'm working with a team of 10+ Java developers on a web application. It's a big project (2 years old) and we've come accross an issue since last night: some beans (2 beans) cause a ...
0
votes
1answer
39 views

Java dependency triggers [duplicate]

Possible Duplicate: Java calling methods from restricted layer Lest say i have this: package org.service; import org.core; public class Service() { public void init() { ...
0
votes
2answers
148 views

Excluding dependencies/jars from jdk

I'm developing a Spring app on Maven, and facing a seemingly duplicate dependency problem. In addition to mail.jar, I have javax.activation in activation.jar as well as jdk that's throwing the below ...
0
votes
0answers
92 views

Spring 3 Dependency Pull example

Hi can any one give me example about how to implement dependency pull in Spring 3.
1
vote
1answer
126 views

spring - one context uses another one

How to import one spring-context from another module's spring context? module2 --uses--> module1 I have module1 and module2 (in my maven model), both are spring apps. Both projects are located ...
0
votes
1answer
150 views

Bean dependency injection in Spring

I have four projects project a , project b , project c, project d. I want to use some manager class of project c in b , but can't access it directly. and have to do it through project a . If i move ...
1
vote
1answer
502 views

spring appContext.xml in dependent jar fails to load property file.

I have 2 spring based jar files - parent.jar and child.jar. parent.jar has a parent_applicationContext.xml and a property file that it loads as below <bean ...
1
vote
1answer
193 views

How do I make Intellij Idea “Spring Dependencies Diagram” to show only a subset of the beans?

In Intellij Idea 11.1.2 I have the "Spring Dependencies Diagram", but this shows too much information (there are 100+ beans in the app, with lots of dependencies), I see no clear overview of what is ...
1
vote
1answer
411 views

Injecting dependencies to Restlet ServerResource using Spring IoC

I'm building a REST service with Spring / Hibernate / Restlet / Jetty and I'm struggling with what I thought to be a simple task: I need to inject DAO implementation (i.e. UserDao) to a ...
1
vote
3answers
252 views

Spring Dependency for Wicket 1.5.3

I am developing an application with Wicket-Hibernate-Spring, where I am using Wicket 1.5.5. <repositories> <repository> <id>googlecode</id> ...
3
votes
4answers
665 views

How to figure out which JARs are actually being used?

I am trying to figure out which JAR libraries, out of a total of 83 JARs, are actually being used by a group of 12 JEE/Spring projects. All JARs are under one EAR. Development is done in Eclipse and ...
0
votes
1answer
126 views

Grails 2.0.1 and binary plugin dependeces

On a grails progect I want to build a binary plugin with "hook" implementable on each specific project Binary plugin structure MyService (service) MyHookClassInterface myHookClass ...
-3
votes
1answer
223 views

Reason to use Spring Dependency Injection [closed]

I'm currently studying Spring and suddenly, I've got curious about DI And my question is What're the main reasons to use DI? Sorry for Duplicate Question..
1
vote
1answer
1k views

Error Deploying Spring app to JBoss - NoSuchMethodError

I have created a Spring webapp, the app is working on tomcat and CloudFoundry, but I am getting an error attempting to start the app on JBoss (OpenShift express). On starting I get the following ...
2
votes
1answer
609 views

What is the difference between spring-context and spring-core dependencies?

Hello I am new to the Spring and maven world, and I want to know what is the difference between this 2 dependencies? Its a simple question.. I am having trouble with my Pom.xml file, so I want to know ...
0
votes
2answers
3k views

java.lang.ClassNotFoundException if I use either hibernate-core 3.6.0 or hibernate-core 4.1.0

How can I solve the following conflict? If I am using hibernate-core 3.6.0.Final I am getting an exception: Caused by: java.lang.ClassNotFoundException: ...
3
votes
1answer
1k views

Why does Maven download different versions of Spring artifacts?

In my Maven project I have defined a bunch of Spring dependencies, and I notice that in some cases it will choose different versions of the artifacts even though they are specified identically in my ...
1
vote
1answer
50 views

Spring 3, reference .xml from dependency

I have 2 projects: Project A, a .war Project B, a .jar I'm using B as a dependency in A through maven. However, I want to load .xml files in B from A's applicationContext.xml Is this even ...
-1
votes
1answer
470 views

What is Dependency Injection and Inversion of Control in Spring Framework?

"Dependency Injection" and "Inversion of Control" are often mentioned as the primary advantages of using the Spring framework for developing Web frameworks Could anyone explain what it is in very ...
4
votes
0answers
588 views

Spring does not abort bootstrapping on bean initialization Error when component scanning is enabled?

i have a web application with a spring configuration file. i have the following entry: <bean id="flyway" class="xxx.FlywayTool" init-method="migrateOrFail"/> the "flyway" bean is used to ...
1
vote
2answers
2k views

Maven Dependency Spring Classpath Issue

So basically using the pom shown below, I am ending up with 2 versions of Spring in my WEB-INF/lib folder (3.1 and 3.0.5, and even on 3.0.6 oddly enough). I am assuming that spring-ws is the cause of ...
-1
votes
3answers
68 views

Couldn't you use maven + spring to create a global repository and reduce duplicate libraries and/or deployment complexity?

So one of the problems with Java is that you wind up with duplicate libraries on the same system. Now that we have products like maven, I've been wondering why this still needs to be the case. For ...
1
vote
2answers
638 views

Automatic dependency injection with Spring

I am currently using CDI (Weld) with tomcat 6 as servlet-container. Having the WeldLifecycleListener within the configuration, doing depencency injection is fairly simple. My question is: Is there an ...
2
votes
2answers
517 views

How to arrange spring context configuration files so they match the project dependencies?

I have a web-application which is dependent on two other modules. For simplicity let's call them ServiceA module and ServiceB module. Each of these modules has various different dependencies and also ...
4
votes
4answers
386 views

How to find out which dependencies need to be included?

I'm fairly new to Java/Spring and am trying to put together a simple app which will include some basic CRUD operations and I'd like to use Hibernate for data access. I'm using Maven as my build tool. ...
0
votes
1answer
933 views

Spring RestTemplate Dependency Error

I am trying to implement Spring RestTemplate into my exsting Spring REST Web application. I tried that: ... private final String BASE_URL = "http://localhost:8080/a"; private final RestTemplate ...
3
votes
2answers
587 views

how to graphically view the dependencies in spring application context file

i have a few application context files for an application. I want to view graphically the dependencies between them. Is there a free plugin in eclipse or some viewer? Thanks!
1
vote
1answer
2k views

Maven pom error

I have example projects from spring core training courses I've been on. They did work on their machines, not on mine though. I am not really expert with maven, but .pom file inside gives this error. I ...
0
votes
1answer
140 views

Does Grails use Spring Dependency Injection by default

An additional question: What is service layer in Grails app? Thanks
0
votes
2answers
333 views

Spring dependency injection - reflection / byte code instrumentation

When I want to use dependency injection with some non-default constructor, i.e. with parameters, spring must be using byte code instrumentation for that, right? Because AFAIK reflection only supports ...
0
votes
2answers
177 views

Java Spring dependencies

I have download spring framework - spring-framework-3.1.0.M2-with-docs.zip. In manifest file: Import-Package: commonj.timers;version="[1.1.0, 2.0.0)";resolution:="o ptional", ...
0
votes
1answer
588 views

spring dependency injection using RMI

suppose we have 2 projects ProjectA(front end) and ProjectB(back end) and 2 classes ClassA in ProjectA and ClassB in ProjectB. Now I need to get the instance of ClassB in ClassA. The question is how ...
1
vote
3answers
3k views

How to get a spring-framework-3.0.5-RELEASE-with-dependencies.zip file for Spring 3?

I have a bit of an issue with Spring 3 and it involves its dependencies or better said "their lack of...". When you download Spring 2.5.x for example you get a ...
0
votes
1answer
3k views

New to Spring - Missing AOP libraries in STS, help!

I'm getting my feet wet with Spring. I downloaded STS and I'm following basic examples from Spring in Action Second Edition. I'm stuck when trying to implement basic AOP and I guess I'm just missing ...
0
votes
1answer
403 views

How to Overcome Spring and Jbehave Versioning Problem?

In our project we are using Spring 3.0.0.RELEASE, and now we are trying to add JBehave to our project. Here the problem is JBehave latest 3.4.5(Release) version uses Spring 2.5.6 (spring-context, ...
2
votes
5answers
1k views

Maven dependency for whole org.springframework

How to set Maven dependency for all org.springframework ? I mean, how to do it in couple lines,instead of providing dependency for every module,e.g.: <dependency> ...
1
vote
2answers
145 views

dealing with spring dependencies

I have a bunch of top level packages that are owned by the same team. All top level packages use spring. Then there are some libraries (jars) that are shared functionality and utilities between the ...
0
votes
2answers
646 views

Issue with basic spring dependency injection where there is no setter just a getter

I have a scenario where I need to inject values to the Arraylist in a class that does not have the setter I believe in this scenario I need to do a get on the list in the POC class and then do a add: ...
5
votes
3answers
4k views

The POM for org.springframework.security:org.springframework.security.web:jar:3.0.5.RELEASE is missing, no dependency information available

When including into pom.xml <dependency> <groupId>org.springframework.security</groupId> <artifactId>org.springframework.security.web</artifactId> ...
2
votes
1answer
1k views

Spring jar dependencies

Trying to build Spring-based application one needs to figure out all necessary dependencies the application will have. For example, I was using HibernateTemplate, and each time I run the application ...
1
vote
2answers
839 views

Making Eclipse Recognize Imports

I am trying to integrate Spring into my project in Eclipse. I am using Maven and have added the dependencies in my POM. While the maven build works, Eclipse does not recognize imports like the ...
1
vote
2answers
161 views

What is an ideal way to organize a Spring 3 web application and its components?

I'm developing an application which has two main 'parts' to it... The public facing website The RESTful API for the mobile application. I'm developing the application with Spring 3 using Spring ...
2
votes
2answers
457 views

Moving Spring Dependency Injected code to Android

Aloha - I'm migrating code from an existing web application into an Android application. The existing web app uses Spring extensively for dependency injection. I'd like to reuse the Spring ...
1
vote
2answers
3k views

Dependencies for using Spring Cache

I want to use Spring Cache features but I don't know what dependedencies this module has. I have a configuration like: <beans xmlns="http://www.springframework.org/schema/beans" ...
3
votes
2answers
8k views

How to figure out the jars that the dependencies in the maven's pom.xml depend on?

I am very interested in how I can find out what are the jars that the dependences in the maven's pom.xml depend on. I am used to doing the adding of libraries (jars) myself in my web application ...
1
vote
2answers
603 views

download spring with dependencies

is there a way to get a spring-with-dependencies.zip for the latest version of spring (3.0x) ? I know that one could get whatever dependencies using maven/ivy but if I were NOT to use either of these ...

1 2