参考SpringBoot集成Flowable-modeler模块并去除权限认证(二)
/**
* 单体启动类(采用此类启动项目为单体模式)
*/
@Slf4j
//排除flowable带的权限认证
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class, org.springframework.boot.actuate.autoconfigure.security.servlet.ManagementWebSecurityAutoConfiguration.class})
public class JeecgSystemApplication extends SpringBootServletInitializer {
实际情况,我的没有ManagementWebSecurityAutoConfiguration
/**
* 单体启动类(采用此类启动项目为单体模式)
*/
@Slf4j
//排除flowable带的权限认证
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
public class JeecgSystemApplication extends SpringBootServletInitializer {