readme.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. SIGNED JAR FILES
  13. -------------------------------------------------------------------------------
  14. We strongly recommend that you verify the integrity of the JAR files included
  15. in this release. You can do so using the following command:
  16. "jarsigner -verify -verbose -certs jar_file_name"
  17. Of course, replace the jar_file_name with "dist/acegi-security.jar" or the
  18. appropriate path to the Acegi Security JAR to be validated.
  19. Until further notice, all Acegi Security official releases are signed by:
  20. X.509, EMAILADDRESS=ben.alex@acegi.com.au, CN=Benjamin Peter Alex, GIVENNAME=Benjamin Peter, SURNAME=Alex
  21. X.509, CN=Thawte Personal Freemail Issuing CA, O=Thawte Consulting (Pty) Ltd., C=ZA -->
  22. If the above certificate was not used, or the JAR was not validated, DO NOT
  23. USE THE JAR. Please email the acegisecurity-developers list (contact details
  24. are provided below) for further assistance.
  25. -------------------------------------------------------------------------------
  26. ANT HELP
  27. -------------------------------------------------------------------------------
  28. Acegi Security includes several Apache Ant build.xml files. This eases Clover
  29. integration and use of JUnit from the command line. We recommend you use the
  30. provided build.bat or build.sh script (as appropriate to your platform).
  31. With Windows, run the main build file "tests" target like this:
  32. ant tests
  33. With Windows, run the Contacts sample "warfile" target like this:
  34. ant -buildfile samples\contacts\build.xml warfile
  35. With Linux/Unix, run the main build file "tests" target like this:
  36. ./ant.sh tests
  37. With Linux/Unix, run the Contacts sample "warfile" target like this:
  38. ./ant.sh -buildfile samples/contacts/build.xml warfile
  39. Each example should be run from the root of the Acegi Security project
  40. directory.
  41. -------------------------------------------------------------------------------
  42. QUICK START
  43. -------------------------------------------------------------------------------
  44. Copy samples/contact/dist/contacts.war into your container webapps directory.
  45. Then visit http://localhost:8080/contacts/ and click "Manage". The Acegi
  46. Security System for Spring secures this small application by protecting both
  47. the method invocations of business objects, and also the HTTP URLs.
  48. -------------------------------------------------------------------------------
  49. DOCUMENTATION
  50. -------------------------------------------------------------------------------
  51. Please refer to the Reference Guide, which is located in the docs/reference
  52. directory. In addition, JavaDocs are located in the docs/api directory.
  53. -------------------------------------------------------------------------------
  54. ADDING ACEGI SECURITY TO YOUR OWN APPLICATION
  55. -------------------------------------------------------------------------------
  56. Take a look in samples/quick-start. There we give you the fragments to add to
  57. your existing web.xml and applicationContext.xml, along with a couple of files
  58. that need to be added to your WAR file.
  59. -------------------------------------------------------------------------------
  60. OBTAINING SUPPORT
  61. -------------------------------------------------------------------------------
  62. If you need any help, please use the Acegi Security System for Spring forum
  63. located at the Spring Community's forum site:
  64. http://forum.springframework.org
  65. If you start using Acegi Security in your project, please consider joining
  66. the acegisecurity-developer mailing list. This is currently the best way to
  67. keep informed about the project's status and provide feedback in design
  68. discussions. You can join at:
  69. https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer.
  70. Links to mailing list archives, the forums, and other useful resources are
  71. available from http://acegisecurity.sourceforge.net.
  72. $Id$