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 is the design role played by struts?
how you provide security in your banking project
if u r using eclipse tool how can u debbaging u r application? plz explain with sample code
In strurt why w use two differnt files web.xml and strut config.xml?
what is is the use DynaActionForm?
Why do we need struts?
What is the flow of requests in struts based applications?
what is the struts internal code?
What is the naming convention for a resource bundle file in struts2?
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....?
what is the disadvantages of using DynaActionForm in struts framework?
State an example of struts configuration file as an action parameter for action servlet.