Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Setting

Description

Default

Possible Values

some.setting

A short description

true

true or false

Installation

This plugin can be installed by copying the plugin jar into your application's /WEB-INF/lib directory. No other files need to be copied or created.

...

  • XML File format given below
    Code Block
    h5.        *DTD format*
    
  • Code Block
    <?xml version="1.0" encoding="UTF-8"?>
    <\!DOCTYPE mapping \[
    <\!ELEMENT mapping    (requestParameter)>
    <\!ELEMENT requestParameter      (objectMapping)>
    <\!ELEMENT objectMapping    (property)>
    <\!ELEMENT property (#PCDATA)>
    \]>
    
  • Code Block
    h4.        *XML Format*
    
  • Code Block
    <?xml version="1.0" encoding="UTF-8"?>
    <mapping>
    <requestParameter name="userName">
    <objectMapping>
    <property>user.userName</property>
    </objectMapping>
    </requestParameter>
    <requestParameter name="password">
    <objectMapping>
    <property>user.password</property>
    </objectMapping>
    </requestParameter>
    </mapping>
    
    

...