readme.txt 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ===============================================================================
  2. ACEGI SECURITY SYSTEM FOR SPRING - README FILE
  3. ===============================================================================
  4. -------------------------------------------------------------------------------
  5. OVERVIEW
  6. -------------------------------------------------------------------------------
  7. The Acegi Security System for Spring provides security services for
  8. The Spring Framework (http://www.springframework.org).
  9. For a detailed list of features and access to the latest release, please visit
  10. http://acegisecurity.sourceforge.net.
  11. -------------------------------------------------------------------------------
  12. ANT HELP
  13. -------------------------------------------------------------------------------
  14. Acegi Security includes several Apache Ant build.xml files. This eases Clover
  15. integration and use of JUnit from the command line. We recommend you use the
  16. provided build.bat or build.sh script (as appropriate to your platform).
  17. With Windows, run the main build file "tests" target like this:
  18. ant tests
  19. With Windows, run the Contacts sample "warfile" target like this:
  20. ant -buildfile samples\contacts\build.xml warfile
  21. With Linux/Unix, run the main build file "tests" target like this:
  22. ./ant.sh tests
  23. With Linux/Unix, run the Contacts sample "warfile" target like this:
  24. ./ant.sh -buildfile samples/contacts/build.xml warfile
  25. Each example should be run from the root of the Acegi Security project
  26. directory.
  27. -------------------------------------------------------------------------------
  28. QUICK START
  29. -------------------------------------------------------------------------------
  30. Copy samples/contact/dist/contacts.war into your container webapps directory.
  31. Then visit http://localhost:8080/contacts/ and click "Manage". The Acegi
  32. Security System for Spring secures this small application by protecting both
  33. the method invocations of business objects, and also the HTTP URLs.
  34. -------------------------------------------------------------------------------
  35. DOCUMENTATION
  36. -------------------------------------------------------------------------------
  37. Please refer to the Reference Guide, which is located in the docs/reference
  38. directory. In addition, JavaDocs are located in the docs/api directory.
  39. -------------------------------------------------------------------------------
  40. ADDING ACEGI SECURITY TO YOUR OWN APPLICATION
  41. -------------------------------------------------------------------------------
  42. Take a look in samples/quick-start. There we give you the fragments to add to
  43. your existing web.xml and applicationContext.xml, along with a couple of files
  44. that need to be added to your WAR file.
  45. -------------------------------------------------------------------------------
  46. OBTAINING SUPPORT
  47. -------------------------------------------------------------------------------
  48. If you need any help, please post a question on the Spring Users mailing list.
  49. If you start using Acegi Security in your project, please consider joining
  50. the acegisecurity-developer mailing list. This is currently the best way to
  51. keep informed about the project's status and provide feedback in design
  52. discussions. You can join at:
  53. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer.
  54. Links to mailing list archives and other useful resources are available from
  55. http://acegisecurity.sourceforge.net.
  56. $Id$