上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: The main interface responsible for making access-control decisions in Spring Security is the AccessDecisionManager. It has a decide method which takes 阅读全文
posted @ 2018-12-19 13:39 帅LOVE俊 阅读(203) 评论(0) 推荐(0) 编辑
摘要: ExceptionTranslationFilter is a Spring Security filter that has responsibility for detecting any Spring Security exceptions that are thrown. Such exce 阅读全文
posted @ 2018-12-19 13:33 帅LOVE俊 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 文章转自 https://blog.csdn.net/qq_24084925/article/details/53790287 oreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合。 foreach元素的属性主要有 item,index,collection,open,sepa 阅读全文
posted @ 2018-12-19 13:06 帅LOVE俊 阅读(1172) 评论(0) 推荐(0) 编辑
摘要: Now let’s explore the situation where you are using Spring Security in a web application (without web.xml security enabled). How is a user authenticat 阅读全文
posted @ 2018-12-18 22:45 帅LOVE俊 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Once you are familiar with setting up and running some namespace-configuration based applications, you may wish to develop more of an understanding of 阅读全文
posted @ 2018-12-18 22:27 帅LOVE俊 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 8.1 Issue Tracking Spring Security uses JIRA to manage bug reports and enhancement requests. If you find a bug, please log a report using JIRA. Do not 阅读全文
posted @ 2018-12-18 22:18 帅LOVE俊 阅读(143) 评论(0) 推荐(0) 编辑
摘要: There are several sample web applications that are available with the project. To avoid an overly large download, only the "tutorial" and "contacts" s 阅读全文
posted @ 2018-12-18 22:16 帅LOVE俊 阅读(271) 评论(0) 推荐(0) 编辑
摘要: The main interface which provides authentication services in Spring Security is the AuthenticationManager. This is usually an instance of Spring Secur 阅读全文
posted @ 2018-12-18 22:09 帅LOVE俊 阅读(130) 评论(0) 推荐(0) 编辑
摘要: This section assumes you have some knowledge of the underlying architecture for access-control within Spring Security. If you don’t you can skip it an 阅读全文
posted @ 2018-12-18 21:58 帅LOVE俊 阅读(194) 评论(0) 推荐(0) 编辑
摘要: From version 2.0 onwards Spring Security has improved support substantially for adding security to your service layer methods. It provides support for 阅读全文
posted @ 2018-12-18 21:53 帅LOVE俊 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 6.3.1 Remember-Me Authentication (记住我的身份验证) See the separate Remember-Me chapter for information on remember-me namespace configuration. 有关remember-me 阅读全文
posted @ 2018-12-18 21:40 帅LOVE俊 阅读(184) 评论(0) 推荐(0) 编辑
摘要: You might be wondering where the login form came from when you were prompted to log in, since we made no mention of any HTML files or JSPs. In fact, s 阅读全文
posted @ 2018-12-18 21:24 帅LOVE俊 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 6.1 Introduction Namespace configuration has been available since version 2.0 of the Spring Framework. It allows you to supplement the traditional Spr 阅读全文
posted @ 2018-12-17 22:40 帅LOVE俊 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Spring Security’s Java Configuration does not expose every property of every object that it configures. This simplifies the configuration for a majori 阅读全文
posted @ 2018-12-17 22:29 帅LOVE俊 阅读(193) 评论(0) 推荐(0) 编辑
摘要: From version 2.0 onwards Spring Security has improved support substantially for adding security to your service layer methods. It provides support for 阅读全文
posted @ 2018-12-17 22:21 帅LOVE俊 阅读(267) 评论(0) 推荐(0) 编辑
摘要: We can configure multiple HttpSecurity instances just as we can have multiple <http> blocks. The key is to extend the WebSecurityConfigurerAdapter mul 阅读全文
posted @ 2018-12-17 22:16 帅LOVE俊 阅读(605) 评论(0) 推荐(0) 编辑
摘要: Thus far we have only taken a look at the most basic authentication configuration. Let’s take a look at a few slightly more advanced options for confi 阅读全文
posted @ 2018-12-17 22:13 帅LOVE俊 阅读(241) 评论(0) 推荐(0) 编辑
摘要: Our examples have only required users to be authenticated and have done so for every URL in our application. We can specify custom requirements for ou 阅读全文
posted @ 2018-12-17 21:57 帅LOVE俊 阅读(373) 评论(0) 推荐(0) 编辑
摘要: Thus far our WebSecurityConfig only contains information about how to authenticate our users. How does Spring Security know that we want to require al 阅读全文
posted @ 2018-12-17 21:48 帅LOVE俊 阅读(424) 评论(0) 推荐(1) 编辑
摘要: General support for Java Configuration was added to Spring Framework in Spring 3.1. Since Spring Security 3.2 there has been Spring Security Java Conf 阅读全文
posted @ 2018-12-17 21:42 帅LOVE俊 阅读(210) 评论(0) 推荐(0) 编辑
摘要: If you are looking to get started with Spring Security, the best place to start is our Sample Applications. 如果您希望开始使用Spring Security,最好的起点是我们的示例应用程序。 阅读全文
posted @ 2018-12-17 21:31 帅LOVE俊 阅读(579) 评论(0) 推荐(0) 编辑
摘要: Among other things, Spring Security 4.2 brings early support for Spring Framework 5. You can find the change logs for 4.2.0.M1, 4.2.0.RC1, 4.2.0.RELEA 阅读全文
posted @ 2018-12-16 20:35 帅LOVE俊 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Since Spring Security is an Open Source project, we’d strongly encourage you to check out the source code using git. This will give you full access to 阅读全文
posted @ 2018-12-16 20:27 帅LOVE俊 阅读(123) 评论(0) 推荐(0) 编辑
摘要: In Spring Security 3.0, the codebase has been sub-divided into separate jars which more clearly separate different functionality areas and third-party 阅读全文
posted @ 2018-12-16 20:25 帅LOVE俊 阅读(142) 评论(0) 推荐(0) 编辑
摘要: You can get hold of Spring Security in several ways. You can download a packaged distribution from the main Spring Security page, download individual 阅读全文
posted @ 2018-12-16 20:21 帅LOVE俊 阅读(146) 评论(0) 推荐(0) 编辑
摘要: It is useful to understand how Spring Security release numbers work, as it will help you identify the effort (or lack thereof) involved in migrating t 阅读全文
posted @ 2018-12-16 20:12 帅LOVE俊 阅读(113) 评论(0) 推荐(0) 编辑
摘要: Spring Security began in late 2003 as "The Acegi Security System for Spring". A question was posed on the Spring Developers' mailing list asking wheth 阅读全文
posted @ 2018-12-16 20:10 帅LOVE俊 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Spring Security provides comprehensive security services for Java EE-based enterprise software applications. There is a particular emphasis on support 阅读全文
posted @ 2018-12-16 20:05 帅LOVE俊 阅读(155) 评论(0) 推荐(0) 编辑
摘要: The later parts of this guide provide an in-depth discussion of the framework architecture and implementation classes, which you need to understand if 阅读全文
posted @ 2018-12-16 19:54 帅LOVE俊 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Spring Security is a powerful and highly customizable authentication and access-control framework. It is the de-facto standard for securing Spring-bas 阅读全文
posted @ 2018-12-16 19:52 帅LOVE俊 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 原文出自 https://spring.io/guides/topicals/spring-security-architecture Spring Security Architecture This guide is a primer for Spring Security, offering 阅读全文
posted @ 2018-12-13 21:52 帅LOVE俊 阅读(416) 评论(1) 推荐(0) 编辑
摘要: 通过源码分析一下结果public class Test { public static void main(String[] args) { // test1(); // test2(); test3(); } static void test1() { List ints = new ArrayLis... 阅读全文
posted @ 2018-12-13 10:38 帅LOVE俊 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 背景 1、修改配置中心读取配置文件的分支,配置了spring.cloud.config.label后,报错,异常大概是读取本地配置文件异常 解决 反复尝试了之后,发现是配置仓库的配置文件格式(yml)异常了 推断 配置中心先去配置仓库拉配置文件,如果远端没有或者远端异常,则获取本地文件 阅读全文
posted @ 2018-11-27 22:05 帅LOVE俊 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 背景 java1.5后引入了自动装箱和自动拆箱的概念 自动拆箱:将引用类型转化为基本数据类型 自动装箱:将基本数据类型装为引用类型 但是实际使用中,什么情况自动拆箱什么情况自动装箱呢? 自动装箱 自动拆箱 自动填坑 阅读全文
posted @ 2018-11-25 21:26 帅LOVE俊 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 文章转自 https://blog.csdn.net/qq_26000415/article/details/78942494 前言新的一年到了,在这里先祝大家新年快乐.我们在上一篇spring boot 源码解析12-servlet容器的建立 中 分析 ServerProperties时,发现其类 阅读全文
posted @ 2018-11-21 23:50 帅LOVE俊 阅读(36639) 评论(0) 推荐(0) 编辑
摘要: 文章转自 http://www.cnblogs.com/itdragon/p/8686554.html Spring Boot提供了两种常用的配置文件,分别是properties文件和yml文件。他们的作用都是修改Spring Boot自动配置的默认值。相对于properties文件而言,yml文件 阅读全文
posted @ 2018-11-21 23:43 帅LOVE俊 阅读(1984) 评论(0) 推荐(0) 编辑
摘要: 文章转自 https://www.cnblogs.com/wucj/p/7152020.html 工具下载 http://www.profilesql.com/download/ 阅读全文
posted @ 2018-11-21 21:04 帅LOVE俊 阅读(1735) 评论(0) 推荐(0) 编辑
摘要: 文章转自https://mariadb.com/kb/en/library/show-engines/#description 1)transaction 是否支持事务 2)XA 事务旨在允许分布式事务,其中事务管理器(应用程序)控制涉及多个资源的事务。这些资源通常是DBMS,但可以是任何类型的资源 阅读全文
posted @ 2018-11-20 23:06 帅LOVE俊 阅读(1766) 评论(0) 推荐(0) 编辑
摘要: https://mariadb.com/kb/en/library/xtradb-and-innodb/ https://mariadb.com/kb/en/library/about-xtradb/ 今天在查看数据库支持的引擎时发现 于是百度了一番 这个引擎是由percona公司开发,对innoD 阅读全文
posted @ 2018-11-20 22:18 帅LOVE俊 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 现象 1、启动时候出现 node null not part of the cluster Cluster [********], ignoring... 2、启动时正常,但是请求时出现 NoNodeAvailableException 原因 1、配置错误 使用Transport Client时要特 阅读全文
posted @ 2018-11-19 22:53 帅LOVE俊 阅读(6178) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页