大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
httpSecurity
创新互联专业为企业提供沙雅网站建设、沙雅做网站、沙雅网站设计、沙雅网站制作等企业网站建设、网页设计与制作、沙雅企业网站模板建站服务,十载沙雅做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。类似于spring security的xml配置文件命名空间配置中的
使用示例:
最基本的基于表单的配置如下。该配置将所有的url访问权限设定为角色名称为"ROLE_USER".同时也定义了内存认证模式:使用用户名"user"和密码“password”,角色"ROLE_USER"来认证。
@Configuration @EnableWebSecurity public class FormLoginSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http .authorizeRequests() .antMatchers("/").hasRole("USER") .and() .formLogin(); } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth .inMemoryAuthentication() .withUser("user") .password("password") .roles("USER"); } }