Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
6answers
6k views

Practical advice on using Jersey and Guice for RESTful service

From what I can find online, the state of the art for Guice + Jersey integration has stagnated since 2008 when it appears both teams reached an impasse. The crux of the issue is that JAX-RS ...
12
votes
2answers
612 views

What are the best debugging tricks with Weld/CDI?

One of the beauties with Java EE 6 is the new dependency injection framework - CDI with the Weld reference implementation - which has prompted us to start migrating internally to JSR-330 in an ...
7
votes
6answers
840 views

How to inject String constants easily with Weld?

We have a situation where we provide an external configuration in form of a Map to our running programs. I have found that JSR-330 Dependency Injection gives a much cleaner way to use that ...
5
votes
1answer
468 views

Any online tutorial links for JSR 330: Dependency Injection for Java?

I am looking for some tutorials on JSR 330: Dependency Injection for Java. Google search didn't provide much information. Please point me to tutorials other than the spec/javadoc.
4
votes
1answer
432 views

Is it possible to replace Spring @Scope(“request”) with JSR-330 @Scope variant?

Or, can I bound a custom implementation of org.springframework.beans.factory.config.Scope interface with a specific @Scope-annotated annotation? For example, I have customized a new scope type: ...
4
votes
1answer
270 views

A question about qualifier in Spring DI

Normally, a qualified component will be injected to annotated fields with the same qualifier: @Component class Apple1 implements IApple {} @Component @Black class Apple2 implements IApple {} ...
3
votes
1answer
120 views

Guice and JSR-330

JSR-330 specifies certain naming conventions in terms of packages, for example: javax.inject.Inject javax.inject.Scope Guice is the Reference Implementation of JSR-330. However, when using it, you ...
3
votes
1answer
1k views

How do I configure JSR-330 @Provider and @Inject @Named(“foo”) String **programmatically** in Spring?

We have decided to use Dependency Injection with JSR-330 annotations for our future modularization efforts, and have been very pleased with the first deliverable based on Guice 2 SVN. Now we need to ...
3
votes
2answers
1k views

JSR 330 and Guice interoperability

Does anybody have experience with JSR 330 vs Guice? From what I gather Guice is not an implementation of JSR 330 but if it is anything like Hibernate and JPA the implementation supports a bunch of ...
2
votes
1answer
56 views

Is there a JSR-330 equivalent of Spring's @Value annotation?

I'm trying to use JSR-330 annotations with Spring 3. Is there a JSR-330 equivalent of Spring's @Value annotation for inserting property values? e.g. can I use @Provider in a way that will instruct ...
2
votes
1answer
398 views

Does spring-context support JSR-330 Qualifier on bean instances?

Spring has its own Qualifier annotation, I think it's equals to javax.inject.Named annotation, which in turns is a concrete qualifier in JSR-330. So, I'm wondering whether or which version of Spring ...
2
votes
1answer
87 views

fail for null arguments with @Inject

I've started using Spring 3 Java Config with the JSR-330 @Inject annotations. Unlike the Spring @Autowire, Spring does not fail at startup if the @Inject parameters are null. Is there a way to do this ...
2
votes
3answers
506 views

JSR-330 support in Guice

The SVN version of Guice supports JSR-330 annotations ("JSR-330 Integration - This documents an experimental, unreleased feature available in Guice SVN only"). Google gives the advise: "For now, stick ...
1
vote
1answer
250 views

Embedded web container supporting JSR-330 injection directly?

We have decided that all our modular code should use JSR-330 dependency injection and we have used Guice 2.1SVN or Java EE 6 CDI to do the actual injection in several projects and has worked very ...
0
votes
0answers
18 views

How to specify validation sequence in JSR-303

I am using JSR-303 validations. Its working fine but I have observed that the validation is done in random order. For example I have defined validation like @NotBlank(message = "msg1") ...
0
votes
1answer
114 views

javax.inject.Qualifier Spring JavaConfig

I have the following code The 2 javax.Inject Qualifiers @Qualifier @Target(value={ElementType.FIELD,ElementType.TYPE,ElementType.PARAMETER}) @Retention(RetentionPolicy.RUNTIME) public @interface ...
0
votes
1answer
66 views

When should I use binding annotations vs more-specific interfaces?

Question What criteria should be used when deciding between: specifying a dependency with an annotation, and specifying a dependency with a more specific interface Example Suppose I have: ...
0
votes
2answers
90 views

Is there a javax.inject.* equivalent to @Assisted

We're looking at using the JSR-330 javax.inject.* annotations instead of the com.google.inject.* equivalents. It looks like the JSR-330 standard does not include several features that I've come to ...
-1
votes
1answer
43 views

@Inject from javax.inject is not part of JSE? [closed]

I came across a post referring @Inject annotation. It seems its a part of Java EE and not JSE. I think that DI is very useful technique a should be available in JSE as well. The JCP page for ...