Thanks.
I changed my managedBean to CDI, but still no code assist!
here is my new bean:
import javax.enterprise.context.RequestScoped;
import javax.inject.Named;
/*
* customer profile
*/
@Named
@RequestScoped
public class Customer {
private String firstName;
private String lastName;
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String save() {
return "/showCustomer.xhtml";
}