Reputation: 27899
I'm using NetBeans IDE 8.0. The IDE issues a notification as shown in the following snap shot.
Classes of javax.faces.bean are gonna be deprecated
Is there any reason for this notification, may be the classes from the specified package are going to be deprecated shortly?
My application uses,
and other related components.
Upvotes: 4
Views: 5138
Reputation: 9266
Since JavaEE 7, JSF favors CDI over Managed bean. That's why javax.faces.bean
will eventually be deprecated but it's gonna be slowwwww.
FYI:
Upvotes: 7