I have included the primefaces-3.4RC1.jar in the WEB-INF/lib directory. In my controller im autowiring my model bean like
@ManagedBean
@RequestScoped
public class MyController{
@Autowired
Location loc;
//other stuff
}
my Location class looks like
public class Location{
private Integer countryId;
//getters setters
}
my view looks like
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<div class="contentBox cornerBorder border">
<p:dialog>
<table class="DialogTable">
<tr>
<td><label>Country</label></td>
<h:selectOneMenu required="true" id="contry" styleClass="text-box" value="#{myController.loc.countryId}">
----------------------------------------------------------------------------------------------^here it gives warning and if i run it crashes
</tr>
</table>
</p:dialog>
when i click on a link to open the dialog it throws an error that the property countryId could not be found. If i remove the value="myController.loc.countryId" it run ok...
anybody to guide me in the right direction
P.S: i have made the appropriate entries in the application context.xml
the actual error
SEVERE: javax.el.PropertyNotFoundException: /WebPages/personal/personalDiv.xhtml @230,119 value="#{myController.loc.countryId}": The class 'com.deltasoft.controller.myController' does not have the property 'loc'.
@Autowiredannotation from thelocand defined its getter and setter, no luck – dakait Dec 14 '12 at 5:39Location locwith@Autowired.You should annotate with@ManagedProperty.Change it and it should work fine. – SrinivasR Dec 14 '12 at 5:41