I just started using the Netbeans 7.1 beta and it is calling out errors of a type which I have never seen before. Specifically:

A managed bean with a public field should not declare any scope other than @Dependent.

The fields it is complaining about are public static final. I can understand the restriction on non-static fields, but I can't think of a good reason this would not be allowed for a static field. Unfortunately I use a lot of them since I don't like having constants in my code.

I note that even though I get the red dot in the margin in the editor, the maven-driven build still works and GlassFish still runs my application the way I would expect.

So what is my denoument on this issue? Am I going to have to move my static fields elsewhere or is there another way of handling this?

link|improve this question

1  
Note: JSF doesn't forbid that. It's Netbeans who does that for some unclear reason, perhaps by some CDI spec restriction. As it's apparently a beta version, I'd just report a bug to the Netbeans guys. – BalusC Nov 26 '11 at 1:22
feedback

2 Answers

up vote 2 down vote accepted

Quoting the javax.enterprise.inject package javadocs:

If a managed bean has a public field, it must have scope @Dependent.

But I do agree wih @BalusC that if this compiles, Netbeans should report it as Warning (does it?).

Anyway, are those constants really part of the API? I mean, do you access they anywhere else but within their own classes? If not, reduce visibility to private. (If you just need to access the constants from the view you can also create accessors for the private constant). If yes, I would suggest you to move them somewhere else anyway.

link|improve this answer
NetBeans 7.1 beta (not prior versions) mark the class line with a red dot in the left margin. However that error does not extend to the projects window the way other errors do. You are right that many of my constants can be designated private instead of public, and I could refactor exportable constants to getters (not setters!). This took me by surprise, though. Most JSF requirements make intuitive sense when you examine them; this one still doesn't. – AlanObject Nov 26 '11 at 2:02
Fixed the mutator part for further reference, bad case of tired developer high on coffee after midnight hehehe. Anyway, if you wish to report a bug for the Netbeans team, here's the place. If it compiles and runs fine, maybe the Netbeans team misinterpreted the specs (or maybe the specs aren't clear about static variables, and it is left as a implementation specific detail...). Just in case, read the specs and be prepared for a open edge debate it it follows down that road. – Anthony Accioly Nov 26 '11 at 2:28
Here's the quote from the linked specs: (Page 27, - 3.1 Managed Beans): If a managed bean with a public field declares any scope other than @Dependent, the container automatically detects the problem and treats it as a definition error. It says nothing about class variables vs object fields, but maybe this is a good question for Gavin King :D. – Anthony Accioly Nov 26 '11 at 2:52
feedback

Public fields (static or not) aren't proxyable - that's why they can only be dependent scoped. To work around this you obviously can access them through getter methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.