Modified:
/wiki/clickspring.wiki
=======================================
--- /wiki/clickspring.wiki Sun May 30 16:50:46 2010
+++ /wiki/clickspring.wiki Sun May 30 17:17:35 2010
@@ -1,4 +1,4 @@
-#summary Integration of Apache Click with Spring dependency injection.
+#summary Integration of Apache Click with Spring dependency injection,
with minimum configuration.
#labels
spring,click,clickspring,click-spring,springclick,spring-click,click-spring-quickstart,click-spring-maven,clickspringmaven,clickspringmavenquickstart
= Setup =
@@ -17,16 +17,16 @@
}}}
And add *inject* and *inject-spring* dependencies into your project's pom
file -
{{{
- <dependency>
- <groupId>org.apache.click.doubleclick</groupId>
- <artifactId>inject</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.click.doubleclick</groupId>
- <artifactId>injectspring</artifactId>
- <version>1.0</version>
- </dependency>
+ <dependency>
+ <groupId>org.apache.click.doubleclick</groupId>
+ <artifactId>inject</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.click.doubleclick</groupId>
+ <artifactId>injectspring</artifactId>
+ <version>1.0</version>
+ </dependency>
}}}
* *Quick Start*
@@ -105,3 +105,13 @@
private IGreetingsService greetingsService;
}
}}}
+
+= Known Issues =
+Below are listed known issues, and we have plan to solve them on upcoming
releases -
+
+ * Dependency injection through methods and constructor.
+ * Adding functionality so that all Spring annotations works.
+ * There are situation when some classes need to be serializable. So
normal bean injection will not work. We need to inject proxy for that.
Until we solve this issue, we can still ask spring to generate proxy. One
way to do that is, configure your spring context file with AOP
configuration. Just add below given line on your spring context file -
+{{{
+<aop:aspectj-autoproxy/>
+}}}