Just happened to me too. Thanks captain ;-)
But I couldn't find the creation of the resourceBundle anywhere else in the CRUD app,
only in the Selector class.
I think this could be a bug in the CRUD generator, since this is generated:
| ...
| private transient ResourceBundle resourceBundle;
|
| @In(create = true)
| private transient OrdersEditor ordersEditor;
|
| @In(create = true)
| private transient OrdersFinder ordersFinder;
| ...
|
and probably it should be like this:
| ...
| @In(create = true)private transient ResourceBundle resourceBundle;
|
| @In(create = true)
| private transient OrdersEditor ordersEditor;
|
| @In(create = true)
| private transient OrdersFinder ordersFinder;
| ...
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958241#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...