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 |
how you implement and maintain your struts project by using MVC2 arch?
Does Struts2 action and interceptors are thread safe?
What are result types in struts?
Please can you tell me ,where can we used the MVC other than web applications.
What are the benefits of Interceptors in Struts2?
What is the difference between struts and spring?
What are the classes used as part of struts framework ?
in struts without integrate hibernate how to use directly explain?
Why do we need mapdispatchtoprops?
What are the core components of a struct2 based application?
How you will make available any message resources definitions file to the struts framework environment?
Does apache struts run on windows?