Skip to content

Commit

Permalink
admin assembly profile
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiskg committed Dec 18, 2023
1 parent b9b055a commit d1590b5
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright 2023 Apollo Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package com.ctrip.framework.apollo.adminservice;

import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.core.annotation.Order;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Profile("assembly")
@Configuration
public class AdminServiceAssemblyAutoConfiguration {

@Order(99)
@Configuration
static class AdminServiceSecurityConfigurer extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
http.httpBasic();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.core.annotation.Order;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
public class AdminServiceAutoConfiguration {
Expand All @@ -49,19 +45,4 @@ public FilterRegistrationBean<AdminServiceAuthenticationFilter> adminServiceAuth

return filterRegistrationBean;
}

/**
* for apollo-assembly
*/
@Order(99)
@Profile("assembly")
@Configuration
static class AdminServiceSecurityConfigurer extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable();
http.httpBasic();
}
}
}

0 comments on commit d1590b5

Please sign in to comment.