How does value = "#{item.firstName}", "item.lastName" and "item.uname" in the data.jsp file work?? If data is stored in perInfoAll where does this item come into picture??
private List perInfoAll = new ArrayList();
has to be
private List<perInfo> perInfoAll = new ArrayList<perInfo>();
otherwise one gets error...
and there is missing sql code for users table
create database userdetails;
use userdetails;
create table user(id int not null,fname varchar(20),lname varchar(20),address varcahr(20),primari key(id));
DB connect with JSFMangal.M October 15, 2011 at 10:24 AM
well..
how does the following thing workdigvijay June 7, 2012 at 10:52 PM
How does value = "#{item.firstName}", "item.lastName" and "item.uname" in the data.jsp file work?? If data is stored in perInfoAll where does this item come into picture??
helpmarwa June 24, 2012 at 8:01 PM
can someone help me I tried this code it works but it displays the data in the database twice thx in advance
Excellent simple jsf applicationsubhas bose September 13, 2012 at 8:03 PM
Its very simple to understand and implement. Thank you so much for this.
solved compilation errormamuka October 26, 2012 at 5:55 PM
private List perInfoAll = new ArrayList(); has to be private List<perInfo> perInfoAll = new ArrayList<perInfo>(); otherwise one gets error... and there is missing sql code for users table create database userdetails; use userdetails; create table user(id int not null,fname varchar(20),lname varchar(20),address varcahr(20),primari key(id));
Post your Comment