drawback of Validation Framework
where and how to write the connection pool object in the
programe
how to debug the programe and application in struts without
using eclips
Answer / chandra
Connection pool u need to specify in the struts-config.xml
<data-sources>
<!-- configuration for commons BasicDataSource -->
<data-source type="org.apache.commons.dbcp.BasicDataSource">
<set-property
property="driverClassName"
value="org.postgresql.Driver" />
<set-property
property="url"
value="jdbc:postgresql://localhost/mydatabase" />
<set-property
property="username"
value="me" />
<set-property
property="password"
value="test" />
<set-property
property="maxActive"
value="10" />
<set-property
</data-source>
</data-sources>
coming to debugging with out eclipse see the logfile
| Is This Answer Correct ? | 5 Yes | 0 No |
What kind of mvc is struts 2?
What is the purpose of struct-config.xml in struct2?
Which design pattern is implemented by Struts2 interceptors?
tell me struts flow ?
5 Answers BA Continnum Solutions, Exira, Fidelity, iGate,
what is frame work in struts?
why servlet is used as controller not JSP?
What are the important methods of actionform?
What is structs 2 validation framework?
How do you know what to give for the "path " under in struts-config.xml ?
What are the advantages of spring mvc over struts mvc?
how canu done chechin and check out of u r project using with sample examples?
Can we have different controllers in one struts app?