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 jakarta struts framework?
What are the major differences between html tags and strut specific html tags?
what is ForwardAction and IncludeAction in struts?
How many Action classes have been used in your project? Differences between struts 1.1 and 1.3?
What is the purpose of @after annotation?
What does params interceptor?
What do you mean by ognl?
What kind of mvc is struts 2?
explain the Struts flow?
Define struts?
where you will implement the tiles in struts?
can we change the order of parameters in execute()?