Question

I would like to inject constant string message to managed bean in JSF web application using CDI, here is producer class:

@Named
@RequestScoped
public class StringProducer {

   @Produces
   @Named("message")    
   @RequestScoped
   public String getMessage() {
      return "Hello World";
   }
}

and here is how it is injected in another managed bean:

@Inject Named("message") String message;

but this always result in exception:

org.jboss.weld.exceptions.UnproxyableResolutionException: WELD-001435 Normal scoped bean int is not proxyable

I tried to wrap String type within Instance like this:

@Inject Named("message") Instance<String> message;

but nothing changed.

Was it helpful?

Solution

The problem is your use of the @RequestScoped annotation on the producer method. Remove it and the application will work as expected.

The Request Scoped annotation is used to annotate Beans managed by the container. To do so, the container proxies the object's public methods. Final classes like String are however not proxyable, as pointed out by the exception when running the code on Glassfish 4.0 with Weld 2.0.0 SP1:

WELD-001437 Normal scoped bean class java.lang.String is not proxyable because the type is final or it contains a final method class java.lang.String - Producer Method [String] (...etc.)

OTHER TIPS

Just short info for future readers:

In addition to the four built-in scopes, CDI also supports two pseudo-scopes:

  1. @Singleton
  2. @Dependent

and both above pseudo-scopes have interesting feature: CDI doesn't create a proxy object for them.

So all classes that are not proxyable (e.g. due to being final or due to lack of no-arg public constructor) can be marked with @Singleton or @Dependent - of course if it makes sense.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top