From c1a6ae0832540081ab8f595b18a9765cd0f4d185 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Thu, 7 Aug 2008 12:40:25 +0000 Subject: [PATCH] Added faq on required dependencies --- src/site/fml/faq.fml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml index a7117a562a..e8a85e743d 100644 --- a/src/site/fml/faq.fml +++ b/src/site/fml/faq.fml @@ -204,5 +204,20 @@ org.springframework.security.AccessDeniedException: Access is denied

+ + How do I know what dependencies to add to my application to work with Spring Security? + +

+ There is no definite answer here, (it will depend on what features you are using), but a good starting point is to copy those from one of the + pre-built sample applications WEB-INF/lib directories. For a basic application, you can start with the tutorial sample. If you want to + use LDAP, with an embedded test server, then use the LDAP sample as a starting point. +

+

+ If you are building your project with maven, then adding the appropriate Spring Security modules to your pom.xml will automatically pull in + the core jars that the framework requires. Any which are marked as "optional" in the Spring Security POM files will have to be added + to your own pom.xml file if you need them. +

+
+
\ No newline at end of file