mirror of
https://gitee.com/dromara/MaxKey.git
synced 2026-05-14 20:50:14 +08:00
78 lines
2.8 KiB
Java
78 lines
2.8 KiB
Java
/*
|
|
* Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
|
|
*
|
|
* 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 org.maxkey;
|
|
|
|
import org.apache.catalina.Context;
|
|
import org.apache.catalina.connector.Connector;
|
|
import org.apache.tomcat.util.descriptor.web.SecurityCollection;
|
|
import org.apache.tomcat.util.descriptor.web.SecurityConstraint;
|
|
import org.maxkey.constants.ConstantsProperties;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.factory.InitializingBean;
|
|
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.PropertySource;
|
|
|
|
|
|
@Configuration
|
|
//@ImportResource(locations = { "classpath:spring/maxkey.xml" })
|
|
@PropertySource(ConstantsProperties.applicationPropertySource)
|
|
@PropertySource(ConstantsProperties.maxKeyPropertySource)
|
|
public class MaxKeySslConfig implements InitializingBean {
|
|
private static final Logger _logger = LoggerFactory.getLogger(MaxKeySslConfig.class);
|
|
/*
|
|
@Bean
|
|
public Connector connector() {
|
|
Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
|
|
connector.setScheme("http");
|
|
connector.setPort(80);
|
|
connector.setSecure(true);
|
|
//connector.setRedirectPort(443);
|
|
_logger.debug("Ssl Support .");
|
|
return connector;
|
|
}
|
|
|
|
@Bean
|
|
public TomcatServletWebServerFactory tomcatServletWebServerFactory(Connector connector) {
|
|
TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() {
|
|
@Override
|
|
protected void postProcessContext(Context context) {
|
|
SecurityConstraint securityConstraint = new SecurityConstraint();
|
|
securityConstraint.setUserConstraint("CONFIDENTIAL");
|
|
SecurityCollection collection = new SecurityCollection();
|
|
collection.addPattern("/*");
|
|
securityConstraint.addCollection(collection);
|
|
context.addConstraint(securityConstraint);
|
|
}
|
|
};
|
|
tomcat.addAdditionalTomcatConnectors(connector);
|
|
return tomcat;
|
|
}
|
|
*/
|
|
|
|
@Override
|
|
public void afterPropertiesSet() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|