Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

71
votes
5answers
22k views

Spring @Autowired usage

What are the pros and cons of using @Autowired in a class that will be wired up by Spring? Just to clarify, I'm talking specifically about the @Autowired annotation, not auto-wiring in XML. I ...
16
votes
3answers
3k views

@Resource vs @Autowired

Which annotation, @Resource (jsr250) or @Autowired (Spring specific) should I be using when using DI? I have successfully used both in the past, @Resource(name="blah") and @Autowired ...
13
votes
3answers
4k views

spring 3 autowiring and junit testing

My code: @Component public class A { @Autowired private B b; public void method() {} } public interface X {...} @Component public class B implements X { ... } I want to test in ...
8
votes
7answers
1k views

Spring Integration Test is Slow with Autowiring

I am trying to speed up the Integration tests in our environment. All our classes are autowired. In our applicationContext.xml file we have defined the following: <context:annotation-config/> ...
7
votes
4answers
381 views

Doesn't autowiring limit goal of IoC?

IoC is nice but, used with autowiring (@EJB, @Autowired, @Inject, @SpringBean...), don't you think it limit a goal of IoC? Actually i don't know so much about autowiring systems in different ...
6
votes
1answer
4k views

Spring Autowiring class vs. interface?

I have this Spring config: <bean id="boo" class="com.x.TheClass"/> The class TheClass implements TheInterface. Then I have this (hypothetical) Java code: @Autowired TheInterface x; ...
5
votes
2answers
273 views

@Autowired HttpServletResponse

I'm looking for a way to autowire HttpServletResponse. It doesn't work with spring out of the box, but I've found this description. This works but is sort of annoying, in that spring obviously has a ...
5
votes
1answer
224 views

Independent JUnit Tests with Springs @Autowired

As a beginner in Test Driven Development I just encountered a problem. My test class begins as follows: @RunWith(SpringJUnit4ClassRunner.class) @Transactional @DirtiesContext ...
5
votes
5answers
296 views

Spring Autowiring only works with Interface

I am quite new to spring framework and came across the following issue. I have an interface ClassA, which is implemented by classed ClassA1 and ClassA2. I have the following bean definition added to ...
4
votes
3answers
605 views

What is the difference between @Inject and @Autowired in Spring Framework? Which one to use under what condition?

I am going through some blogs on SpringSource and in one of the blog author is using @Inject and I suppose he can also use @Autowired Here is the piece of code: @Inject private CustomerOrderService ...
4
votes
3answers
257 views

What is the best way to inject mocked Spring @Autowired dependencies from a unit test?

import org.springframework.beans.factory.annotation.Autowired; class MyService { @Autowired private DependencyOne dependencyOne; @Autowired private DependencyTwo dependencyTwo; public void ...
4
votes
1answer
316 views

Spring autowiring setter/constructor PROs and CONs

When using @Autowired (not xml configuration), could someone compare the set/constructor binding advantages and disadvantages? See the following examples: public class Example{ private Logger ...
4
votes
1answer
914 views

Spring 3.0.5 doesn't evaluate @Value annotation from properties

Trying to auto-wire properties to a bean in Spring 3.0.5.RELEASE, I'm using: config.properties: username=myusername main-components.xml <context:property-placeholder ...
4
votes
4answers
718 views

benefit of @Autowired annotation in Java

Maybe, because of my wrong English, I couldn't understand the benefit of using @Autowired annotation. According to the tutorial we can simplify the first(I.) case to second case(II.) by means of ...
4
votes
2answers
3k views

spring-nullpointerexception- cant access autowired annotated service (or dao) in a no-annotations class

I have this problem that I cannot fix. From my @Controller, i can easily access my autowired @Service class and play with it no problem. But when I do that from a separate class without annotations, ...
4
votes
1answer
699 views

Spring JUnit4 manual-/auto-wiring dilemma

I ran into an issue that can only be explained with my fundamental lack of understanding of Spring's IoC container facilities and context setup, so I would ask for clarification regarding this. Just ...
4
votes
1answer
880 views

injecting derived property for @Repository bean without @Autowired in super class

I would like to use @Repository spring annotation to avoid adding bean in context.xml. I use ibatis integration, so my repository class looks like this @Repository("userDao") public class ...
4
votes
3answers
1k views

How does Spring @Autowired work

I came across an example of @Autowired public class EmpManager { @Autowired private EmpDao empDao; } I was curious about how the empDao get sets since there are no setter methods and it is ...
4
votes
2answers
8k views

Spring 3 Annotations - HibernateDaoSupport - Repository Requires Session Factory

I am getting an exception saying : java.lang.IllegalArgumentException: 'sessionFactory' or 'hibernateTemplate' is required When trying to use the @Repository annotation on a ...
4
votes
3answers
2k views

Is context:annotation-config an alternative to @AutoWired?

Is it correct that I can put context:annotation-config in my XML config and it will automatically inject the bean class without needing any annotations? So instead of using these annotation types: ...
4
votes
2answers
5k views

Spring 3 DI using generic DAO interface

I'm trying to use @Autowired annotation with my generic Dao interface like this: public interface DaoContainer<E extends DomainObject> { public int numberOfItems(); // Other methods ...
4
votes
3answers
4k views

What is the cleanest way to autowire Spring Beans in a JSP?

We're currently adding some new features to an old webapp which was using only JSP without any framework for the front. We have added Spring recently, and we would like to autowire our beans in our ...
3
votes
3answers
51 views

Customizable @Autowired

Let's assume I have an annotated bean property setter like this: public class Foo { ... @Autowired public void setBar(Bar bar) { ... } The Springframework will lookup the matching Bar ...
3
votes
3answers
99 views

disable spring autowire

i ahave an app with struts2.2 and spring 3.1 and i want to disable spring autowire. I googled a little bit and found that i have to put at <beans> tab default-autowire="no", but this doesn't ...
3
votes
3answers
134 views

How to use Spring Autowired (or manually wired) in Scala object?

I am trying to use Spring with Scala. I know Autowired works with Scala class, but I am using a web-framework that requires an object and I want to inject a dao into it. I wonder how to do this? ...
3
votes
2answers
194 views

Autowiring and annotation configuration in Spring

I have 2 components A and B. A depends on B. I wrote something like: public class A { private B b; @Autowired public void setB(B b) { this.b = b; } } @Component public class ...
3
votes
2answers
329 views

Spring @autowired does not work

I have a problem with spring DI via annotations, here is my app: @Service public class Test { @Autowired private GpsPointEntityDao gpsPointEntityDao; public void test() { if ...
3
votes
2answers
404 views

Mocking Spring beans

I'd like to continue this question. These answers foo and bar are exactly what I would need. But for the bar example spring doesn't infer the type of bean that is returned from generic mock() ...
3
votes
2answers
253 views

@Autowired bean is null when referenced in the constructor of another bean

Shown below is a snippet of code where I try and reference my ApplicationProperties bean. When I reference it from the constructor it is null, but when referenced from another method it is fine. Up ...
3
votes
2answers
301 views

How to autowire factorybean instance (not the getObject() object) with annotations?

I know it is possible to get the reference to the factorybean instance when defining the beans with XML (Spring). e.g.: <property name="factoryBean" ref="&amp;theFactoryBean" /> But is ...
3
votes
1answer
1k views

@Autowired object gets a null value in one class, while successfully wired in another

I am working on a project using Spring 3, and Spring Security. My problem is with IoC container. Problem started when I wrote my own implementation of UserDetailsService for Spring Security-3. I ...
3
votes
2answers
2k views

Spring @Autowiring with generic factory-built beans

I have a set of classes with a complex initialization scheme. Basically, I start with the interface I need to get a hold of, and then make a bunch of calls, and I end up with an object that implements ...
3
votes
2answers
659 views

Using Proguard with a library has a @Service bean which should autowire

I have a library Common.License which I am obfuscating with Proguard: <plugin> <groupId>com.pyx4me</groupId> <artifactId>proguard-maven-plugin</artifactId> ...
3
votes
1answer
437 views

Using Proguard with a library that uses Spring @Autowired by name

I'm using Proguard to obfuscate a library that has several @Autowired fields. The obfuscator is renaming those class fields (because they are private/internal to the class) and thus my bean is ...
3
votes
2answers
2k views

Is it possible to wire a Spring MVC Interceptor using annotations?

Is it possible to wire a Spring MVC Interceptor using annotations and if so could someone provide me with an example of how to do so? By wire via annotation I am referring to doing as little in the ...
3
votes
2answers
2k views

Spring @autowire problem

I have some problems wth autowire annotation. My app looks like this: Here is controller: @Controller public class MyController { @Autowired @Qualifier("someService") private SomeService ...
3
votes
2answers
2k views

Spring @Autowired in Servlet

I am using Spring framework (2.5.4) in my app with Load time weaving and everything works fine everywhere (in Spring beans, in non-Spring entities), except when I try to autowire field in a servlet ...
3
votes
3answers
2k views

Is It Possible To Spring Autowire the same Instance of a protoype scoped class in two places

** changed the example to better express the situation i am using spring 2.5 and have the following situation @Component @Scope("prototype") Class Foo { } class A { @Autowired Foo fooA; } ...
3
votes
1answer
3k views

How can I read contents from Spring Messagesource within a Enum?

I have an Enum containing three different Status types. These statuses should be displayed in an email sent to users, and the strings containing the statuses to be displayed are stored in ...
3
votes
3answers
1k views

Spring configuration in GWT Project?

I am developing a GWT-Spring-Hibernate project and I want to use Spring Autowired annotation in GWT Service Servlet but my autowired annotated service is not injected. it is null. Is there a ...
2
votes
2answers
115 views

Calling Spring component from groovy

I have a spring-based java application with some useful components. As a part of the system I have a groovy script, to process some reports. I would like to call a spring component from groovy script. ...
2
votes
2answers
33 views

Spring: What is the best way to configure at startup time which service beans should be initialized?

Ok, this might sound like a weird question, but here's the catch: We have a Spring-based application here that has different "setup" modes. In one mode it needs to use additional service beans (that ...
2
votes
1answer
134 views

What is the spring way to autowire factory created instances?

I have a controller which is supposed to create version dependend instances (currently not implemented). @Controller public class ReportController { @Autowired private ReportCompFactory ...
2
votes
2answers
241 views

In Spring how do I configure java.util.Logging so it can be autowired?

In our webapp we're using java.util.Logging (JULI, actually, since we deploy to Tomcat 6). Logging is configured by a logging.properties file in WEB-INF/classes, a la this. I'd like to configure the ...
2
votes
4answers
684 views

Spring autowire a list

Is is possible to use @Autowired with a list? Like I have properties file with mimetypes and in my class file I have something like this @Autowired private List<String> mimeTypes = new ...
2
votes
2answers
248 views

Disabling Spring @Autowired by-name fallback

I have the following classes defined: public interface Thingy { ... } public class Foo implements Thingy { ... } public class Bar implements Thingy { ... } Classes Foo and Bar are both instanciated ...
2
votes
5answers
259 views

Can @Autowired by type produce a bean definition?

When you use @Autowired in a spring @Component, spring determines autowire candidates for every instantiation of the component, which is really not good when you use @Request/@Session scoped web ...
2
votes
3answers
338 views

Make object spring managed

How can I get an already existing object spring managed? I would like to hook it up to Springs AoP capabilities using aspectj. I know this to be a challenge since Spring AoP uses dynamic proxies which ...
2
votes
2answers
2k views

Singleton and @Autowired returning NULL

I have a repository manager that manages my repositories. I have the @Autowired to instantiate my properties, but they are always null. The beans are correctly configured in my xml. Any reason why? ...
2
votes
2answers
458 views

Constructor arguments in autowiring sources

What exactly causes this? org.springframework.beans.factory.NoSuchBeanDefinitionException: \ No unique bean of type [fi.utu.keycard.business.KeyCardManager] \ is defined: expected single matching ...

1 2 3 4