diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 0a8642f..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -# Zeppelin ignored files -/ZeppelinRemoteNotebooks/ diff --git a/_sidebar.md b/_sidebar.md index 961bb6c..eee6c82 100644 --- a/_sidebar.md +++ b/_sidebar.md @@ -1,4 +1,6 @@ - CWIKIUS SPRING SECURITY - [概要和简介](README.md) - [Spring Security 中文文档](index.md) + - [要求](prerequisites.md) + - [社区](community.md) - [联系我们](CONTACT.md) \ No newline at end of file diff --git a/community.md b/community.md index cbb9fc0..9ea2e3e 100644 --- a/community.md +++ b/community.md @@ -1,37 +1,34 @@ -[[community]] -= Spring Security Community +# Spring Security 社区 -Welcome to the Spring Security Community! -This section discusses how you can make the most of our vast community. +欢迎来到 Spring Security 社区! +本部分讨论如何充分利用我们庞大的社区。 -[[community-help]] -== Getting Help -If you need help with Spring Security, we are here to help. -The following are some of the best ways to get help: +## 获得帮助 +如果您需要有关 Spring Security 的帮助,我们将在这里为您提供帮助。 +以下是获得帮助的一些最佳方法: -* Read through this documentation. -* Try one of our many xref:samples.adoc#samples[sample applications]. -* Ask a question on https://stackoverflow.com/questions/tagged/spring-security[https://stackoverflow.com] with the `spring-security` tag. -* Report bugs and enhancement requests at https://github.com/spring-projects/spring-security/issues +* 参考本文档 +* 尝试使用我们众多的[示例应用程序](samples.md) +* 使用 `spring-security` 标签在 [https://stackoverflow.com](https://stackoverflow.com/questions/tagged/spring-security) 网站上提问 +* 通过下面的链接提交一个问题:https://github.com/spring-projects/spring-security/issues -[[community-becoming-involved]] -== Becoming Involved -We welcome your involvement in the Spring Security project. -There are many ways to contribute, including answering questions on Stack Overflow, writing new code, improving existing code, assisting with documentation, developing samples or tutorials, reporting bugs, or simply making suggestions. -For more information, see our https://github.com/spring-projects/spring-security/blob/main/CONTRIBUTING.adoc[Contributing] documentation. +## Becoming Involved +我们欢迎您参与 Spring Security 项目。 +要参与 Spring Security 项目有很种方法,包括在 Stack Overflow 回答相关问题,编写行代码,提高已有代码,帮助文档,开发示例程序或者教程,报告错误,或者非常简单的提供任何建议。 +有关更多的信息,请参考我们的 [Contributing]( https://github.com/spring-projects/spring-security/blob/main/CONTRIBUTING.adoc) 文档. -[[community-source]] -== Source Code -You can find Spring Security's source code on GitHub at https://github.com/spring-projects/spring-security/ +## Source Code + 你可以在 [GitHub](https://github.com/spring-projects/spring-security/) 上找到所有相关的源代码。 -[[community-license]] -== Apache 2 License -Spring Security is Open Source software released under the https://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license]. +## Apache 2 License -== Social Media +Spring Security 是基于 [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.html) 开源许可证发布的。 -You can follow https://twitter.com/SpringSecurity[@SpringSecurity] and the https://twitter.com/SpringSecurity/lists/team[Spring Security team] on Twitter to stay up to date with the latest news. -You can also follow https://twitter.com/SpringCentral[@SpringCentral] to keep up to date with the entire Spring portfolio. \ No newline at end of file +## 社交媒体 +你可以在 Twitter 上关注 [@SpringSecurity](https://twitter.com/SpringSecurity) 和 [Spring Security team](https://twitter.com/SpringSecurity/lists/team) 来获得项目的最新新闻。 +你也可以在 Twitter 上关注 [@SpringCentral](https://twitter.com/SpringCentral) 来了解整个 Spring 项目的所有信息。 + +针对中文环境,您也可以在 [www.ossez.com](https://www.ossez.com/) 网站上注册后提交问题和参与讨论。 \ No newline at end of file diff --git a/index.md b/index.md index c552fe9..04e8d0e 100644 --- a/index.md +++ b/index.md @@ -29,3 +29,5 @@ Spring security 是一个强大的,并且可以高度定制的身份验证和 | WIKI 维基 | [www.cwiki.us](https://www.cwiki.us/) | 使用 Confluence 部署的 WIKI 知识库 | | DOCS.OSSEZ.COM | [https://docs.ossez.com/#/](https://docs.ossez.com/#/) | 本手册的编译版本将会部署在这个链接上 | | CN 博客 | [http://www.cwikius.cn/](http://www.cwikius.cn/) | CWIKIUS.CN 一个有独立思考和温度的清新站 | + +[](prerequisites.md ':include') \ No newline at end of file diff --git a/prerequisites.md b/prerequisites.md new file mode 100644 index 0000000..18439fb --- /dev/null +++ b/prerequisites.md @@ -0,0 +1,10 @@ +# 系统要求 +Spring Security 需要 JDK 8 或更高的版本。 + +由于 Spring Security 是以独立的方式运作, 所以,不需要在你的 Java 运行环境配置特殊的文件。 也不需要配置专门的 Java 认证和授权服务(JAAS)策略文件,或者将 Spring Security 的位置放到普通的类载入路径(classpath)中。 + +同样的,如果你使用的是 EJB 或 Servlet 容器,也不需要在任何地方放置特殊的配置文件,或者将 Spring Security 的位置放到普通的类载入路径(classpath)中。 + +所有需要的文件和类已经打包到你的应用程序中了。 + +这种设计给为应用的部署署时间提供了最大的灵活性,你可以非常简单拷贝你的部署文件(可以是 JAR, WAR 或者 EAR)从一个系统到另一个系统中,你的应用可以马上工作。 \ No newline at end of file diff --git a/samples.md b/samples.md new file mode 100644 index 0000000..e69de29