Setting Up ZK Spring using Maven"

From Documentation
Line 7: Line 7:
  
 
===Configuration===
 
===Configuration===
 +
* You need to declare Spring ContextLoaderListener in the web.xml file to be able to declare and register your Spring beans with Spring framework.
 +
<source lang="xml">
 +
<listener>
 +
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 +
</listener>
 +
</source>
  
 
=Version History=
 
=Version History=

Revision as of 04:34, 17 November 2011

Setting Up ZK Spring using Maven



Subsections:


WarningTriangle-32x32.png This page is under construction, so we cannot guarantee the accuracy of the content!

Purpose

Setup ZK Spring Integration Library using maven configurations.

Example

Configuration

  • You need to declare Spring ContextLoaderListener in the web.xml file to be able to declare and register your Spring beans with Spring framework.
<listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

Version History

Last Update : 2011/11/17


Version Date Content
     


Last Update : 2011/11/17

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.