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



drawback of Validation Framework where and how to write the connection pool object in the program..

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

Post New Answer

More Struts Interview Questions

What is the design role played by struts?

0 Answers  


how you provide security in your banking project

1 Answers   IBM,


if u r using eclipse tool how can u debbaging u r application? plz explain with sample code

3 Answers   IBM, Tech Mahindra,


In strurt why w use two differnt files web.xml and strut config.xml?

2 Answers  


what is is the use DynaActionForm?

3 Answers   TCS,


Why do we need struts?

0 Answers  


What is the flow of requests in struts based applications?

0 Answers  


what is the struts internal code?

1 Answers   Wipro,


What is the naming convention for a resource bundle file in struts2?

0 Answers  


Hi All thanks in advance, iam new to j2ee currently in my project we r using struts with hibernate can i have one sample application like CRUD application with code or any tutorials liks r ebooks plz....?

1 Answers   IBM,


what is the disadvantages of using DynaActionForm in struts framework?

5 Answers   HCL,


State an example of struts configuration file as an action parameter for action servlet.

0 Answers  


Categories