what are componeents presents in Strutsconfig.xml?

Answers were Sorted based on User's Feedback



what are componeents presents in Strutsconfig.xml?..

Answer / narendher sharma

<data-sources>
<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
property="maxWait"
value="5000" />
<set-property
property="defaultAutoCommit"
value="false" />
<set-property
property="defaultReadOnly"
value="false" />
<set-property
property="validationQuery"
value="SELECT COUNT(*) FROM market" />
</data-source>
</data-sources>
-->

<!-- ================================================ Form
Bean Definitions -->

<form-beans>
<form-bean name="ufBean"
type="A.Form.loginform"/>
</form-beans>


<!-- ========================================= Global
Exception Definitions -->

<global-exceptions>
<!-- sample exception handler
<exception
key="expired.password"
type="app.ExpiredPasswordException"
path="/changePassword.jsp"/>
end sample -->
</global-exceptions>


<!-- =========================================== Global
Forward Definitions -->

<global-forwards>
<!-- Default forward to "Welcome" action -->
<!-- Demonstrates using index.jsp to forward -->
<forward
name="welcome"
path="/Welcome.do"/>
</global-forwards>


<!-- =========================================== Action
Mapping Definitions -->

<action-mappings>
<!-- Default "Welcome" action -->
<!-- Forwards to Welcome.jsp -->
<action
path="/Welcome"
forward="/pages/Welcome.jsp"/>

<action
path="/login"
type="A.Action.loginAction"
name="ufBean"
scope="request"

>

<forward name="success" path="/success.jsp"/>
<forward name="failure" path="/Failer.jsp"/>
</action>

<!-- sample input and input submit actions

<action
path="/Input"
type="org.apache.struts.actions.ForwardAction"
parameter="/pages/Input.jsp"/>

<action
path="/InputSubmit"
type="app.InputAction"
name="inputForm"
scope="request"
validate="true"
input="/pages/Input.jsp"/>

<action
path="/edit*"
type="app.Edit{1}Action"
name="inputForm"
scope="request"
validate="true"
input="/pages/Edit{1}.jsp"/>

end samples -->
</action-mappings>


<!-- =============================================
Controller Configuration -->

<controller

processorClass="org.apache.struts.tiles.TilesRequestProcesso
r"/>


<!-- ======================================== Message
Resources Definitions -->

<message-resources parameter="ApplicationResources" />


<!-- =============================================== Plug
Ins Configuration -->

<!--
=======================================================
Tiles plugin -->
<!--
This plugin initialize Tiles definition factory. This
later can takes some
parameters explained here after. The plugin first
read parameters from
web.xml, thenoverload them with parameters defined
here. All parameters
are optional.
The plugin should be declared in each struts-config
file.
- definitions-config: (optional)
Specify configuration file names. There can be
several comma
separated file names (default: ?? )
- moduleAware: (optional - struts1.1)
Specify if the Tiles definition factory is
module aware. If true
(default), there will be one factory for each
Struts module.
If false, there will be one common
factory for all module. In this
later case, it is still needed to declare one
plugin per module.
The factory will be initialized with parameters
found in the first
initialized plugin (generally the one
associated with the default
module).
true : One factory per module.
(default)
false : one single shared factory
for all modules
- definitions-parser-validate: (optional)
Specify if xml parser should validate the
Tiles configuration file.
true : validate. DTD should be
specified in file header (default)
false : no validation

Paths found in Tiles definitions are relative to
the main context.
-->

<plug-in
className="org.apache.struts.tiles.TilesPlugin" >

<!-- Path to XML definition file -->
<set-property property="definitions-config"
value="/WEB-INF/tiles-defs.xml" />
<!-- Set Module-awareness to true -->
<set-property property="moduleAware" value="true" />
</plug-in>
These are the main things in struts -config.xml

Is This Answer Correct ?    17 Yes 1 No

what are componeents presents in Strutsconfig.xml?..

Answer / narendher sharma

<data-sources>
<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
property="maxWait"
value="5000" />
<set-property
property="defaultAutoCommit"
value="false" />
<set-property
property="defaultReadOnly"
value="false" />
<set-property
property="validationQuery"
value="SELECT COUNT(*) FROM market" />
</data-source>
</data-sources>
-->

<!-- ================================================ Form
Bean Definitions -->

<form-beans>
<form-bean name="ufBean"
type="A.Form.loginform"/>
</form-beans>


<!-- ========================================= Global
Exception Definitions -->

<global-exceptions>
<!-- sample exception handler
<exception
key="expired.password"
type="app.ExpiredPasswordException"
path="/changePassword.jsp"/>
end sample -->
</global-exceptions>


<!-- =========================================== Global
Forward Definitions -->

<global-forwards>
<!-- Default forward to "Welcome" action -->
<!-- Demonstrates using index.jsp to forward -->
<forward
name="welcome"
path="/Welcome.do"/>
</global-forwards>


<!-- =========================================== Action
Mapping Definitions -->

<action-mappings>
<!-- Default "Welcome" action -->
<!-- Forwards to Welcome.jsp -->
<action
path="/Welcome"
forward="/pages/Welcome.jsp"/>

<action
path="/login"
type="A.Action.loginAction"
name="ufBean"
scope="request"

>

<forward name="success" path="/success.jsp"/>
<forward name="failure" path="/Failer.jsp"/>
</action>

<!-- sample input and input submit actions

<action
path="/Input"
type="org.apache.struts.actions.ForwardAction"
parameter="/pages/Input.jsp"/>

<action
path="/InputSubmit"
type="app.InputAction"
name="inputForm"
scope="request"
validate="true"
input="/pages/Input.jsp"/>

<action
path="/edit*"
type="app.Edit{1}Action"
name="inputForm"
scope="request"
validate="true"
input="/pages/Edit{1}.jsp"/>

end samples -->
</action-mappings>


<!-- =============================================
Controller Configuration -->

<controller

processorClass="org.apache.struts.tiles.TilesRequestProcesso
r"/>


<!-- ======================================== Message
Resources Definitions -->

<message-resources parameter="ApplicationResources" />


<!-- =============================================== Plug
Ins Configuration -->

<!--
=======================================================
Tiles plugin -->
<!--
This plugin initialize Tiles definition factory. This
later can takes some
parameters explained here after. The plugin first
read parameters from
web.xml, thenoverload them with parameters defined
here. All parameters
are optional.
The plugin should be declared in each struts-config
file.
- definitions-config: (optional)
Specify configuration file names. There can be
several comma
separated file names (default: ?? )
- moduleAware: (optional - struts1.1)
Specify if the Tiles definition factory is
module aware. If true
(default), there will be one factory for each
Struts module.
If false, there will be one common
factory for all module. In this
later case, it is still needed to declare one
plugin per module.
The factory will be initialized with parameters
found in the first
initialized plugin (generally the one
associated with the default
module).
true : One factory per module.
(default)
false : one single shared factory
for all modules
- definitions-parser-validate: (optional)
Specify if xml parser should validate the
Tiles configuration file.
true : validate. DTD should be
specified in file header (default)
false : no validation

Paths found in Tiles definitions are relative to
the main context.
-->

<plug-in
className="org.apache.struts.tiles.TilesPlugin" >

<!-- Path to XML definition file -->
<set-property property="definitions-config"
value="/WEB-INF/tiles-defs.xml" />
<!-- Set Module-awareness to true -->
<set-property property="moduleAware" value="true" />
</plug-in>
These are the main things in struts -config.xml

Is This Answer Correct ?    8 Yes 0 No

Post New Answer

More Struts Interview Questions

How can we group related actions in one group in Struts?

0 Answers  


What is the purpose of @emailvalidator?

0 Answers  


What are interceptors in struts 2?

0 Answers  


What are action errors and error?

0 Answers  


what are tiles in struts?

3 Answers   Wipro,






How do you know what to give for the "path " under in struts-config.xml ?

1 Answers  


1.Which of the following can be performed using interceptors by the developer? 1. Provide pre-processing logic before invoking the action 2. Interact with the action and set the request parameter on the action 3. Provide post-processing logic after invoking the action 4. Modify the result 1, 2, 3 2, 3, 4 1, 2, 4 1, 2, 3, 4 2.Interceptors can be used for which of the following tasks? 1. Checking security and bottleneck 2. Tracing the log 3. Validating user input 4. Uploading file 1, 2, 3 2, 3, 4 1, 2, 4 1, 2, 3, 4 3.The ValueStack is made up of which of the following objects? 1. Temporary Objects 2. Model Object 3. Action Object 4. Permanent Object 1, 2, 3 2, 3, 4 1, 2, 4 1, 2, 3, 4 4.Which of the following statements are correct? Apache Struts is a Java based framework that separates the application logic from the presentation layer. Action is based on pull-MVC framework which means that the data to be displayed is pulled from the action class which is a POJO class acting as a model in the Web application. OGNL is a powerful expression language that allows you to refer and manipulate the data present on the ValueStack. Declarative architecture enables you to integrate the different components present in the Web application either using XML files or Annotations. 5.Which of the following are the examples of helpers? 1. Action Interface 2. ActionSupport Class 3. ActionImplement Interface 1, 2 2, 3 1, 3 1, 2, 3 6.The Struts 2 filter performs which of the following tasks? 1. Installation of the Action class 2. Execution of the method specified in the configuration file 3. Reading of the control string 1, 2 2, 3 1, 3 1, 2, 3 7.Which of the following value for the debug parameter displays an OGNL console to test OGNL expressions against the value stack? xml console command All of the above. 8.Which of the following are correct statements? The execute () method of the action class defines business logic implementations. ActionSupport class adds useful utilities to the class that extends it. Set of Interceptors are grouped into a stack known as Interceptor Stack. All of the above. 9.Which of the following annotation helps to set the path of the action URL? It is placed before the action class and it applies to all actions defined in the class, even if the fully qualified URLs are not supplied. @Namespace @Result @Results @ParentPackage 10.Which of the following statements are correct related to OGNL and Annotations? OGNL is an expression and binding language that is used for getting and setting the properties of the Java objects. Annotations acts as an alternative to HTML and Java properties configuration file. Action Annotations are available when the framework scans the classpath for action classes. Lifecycle callback annotations are invoked at any time during the processing of an action. 11.Which of the following are the features of the new unified Expression Language? Deferred evaluation of expression Support expressions that can set values and invoke methods Provides a pluggable API for resolving expressions All of the above. 12.By introducing the new feature by JSF, improvements have been made in which of the following areas? Set of standard converter messages Addition of requiredMessage, converterMessage, and validatorMessage attribute for input components. Displaying the error message using the input component name with the help of label attribute added to the input components All of the above. 13.Which of the following statements are correct about the 'label' attribute? In JSF 2.1, the label attribute have been introduced with the input components. The label attribute can accept literal or value expressions. The Literal or value expressions accepted by label attribute is prefixed before the components error message. All of the above. 14.Which of the following statements are correct? EL allows developers to use simple expressions to dynamically access data from JavaBeans components. EL supports only deferred evaluation. A value expression can either yield a value or set a value and can be used for both read and write. In immediate evaluation, the expression is evaluated immediately. 15.Which of the following statements are correct? Method expression invokes as arbitrary private method of an arbitrary object by passing a specified set of parameters and returning results from the calling method. JSTL is a part of Java EE 5 platform. JSF 1.2 includes a set of messages for standard converters. The requiredMessage, converterMessage, or the validatorMessage attribute of the input components are used to provide custom error messages.

2 Answers   Wipro,


What is defeult result type?

0 Answers  


What do you know about validation plugin ?

0 Answers  


What is action servlet in struts?

0 Answers  


What is the purpose of @after annotation?

0 Answers  


What is the purpose of struct-config.xml in struct2?

0 Answers  


Categories