What is server in j2ee?
No Answer is Posted For this Question
Be the First to Post Answer
What is a j2ee module?
Explain connector architecture.
What is java application server?
public class ActionSearchBean extends GenericSearchBean<ActionDTO, Long, ActionDTO> { @Override public String search() { data.setRowCount(null); if(data.getRowCount()==0){ data.getNoRecordFound().setRendered(true); data.getDataScroller().setRendered(false); } return "searchAction"; } @Override public String clear() { data.setRowCount(null); if (data.getRowCount() > 0){ data.getNoRecordFound().setRendered(false); data.getDataScroller().setRendered(true); }else{ data.getNoRecordFound().setRendered(true); data.getDataScroller().setRendered(false); } data.setModel(new ActionDTO()); data.setRowCount(null); return "searchAction"; } } what is the purpose of @Override ...what will do @Override here ?
what is the main use of the RequestDispatch object, how we this in realtime project
Describe secure socket layer (ssl)?
Explain about J2EE Application Architecture
What is a plugin in java?
Explain j2ee architecture.
How does j2ee application work?
can someone tell me how does preparedstatement works? its an interface and where is the implementation?
Give some advantages of orm (object-relational mapping)?