提交 e88afb27 authored 作者: inroi's avatar inroi

微调

上级 b4f2c5ed
package com.nzwz.config;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.web.cors.CorsConfiguration;
import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
import org.springframework.web.filter.CorsFilter;
/**
* @author Inori
*/
@Configuration
public class GlobalCorsConfig {
/*@Bean
public CorsFilter corsFilter() {
//1.添加CORS配置信息
CorsConfiguration config = new CorsConfiguration();
//1) 允许的域,不要写*,否则cookie就无法使用了
config.addAllowedOrigin("*");
//2) 是否发送Cookie信息
config.setAllowCredentials(true);
//3) 允许的请求方式
config.addAllowedMethod("OPTIONS");
config.addAllowedMethod("HEAD");
config.addAllowedMethod("GET");
config.addAllowedMethod("PUT");
config.addAllowedMethod("POST");
config.addAllowedMethod("DELETE");
config.addAllowedMethod("PATCH");
config.setMaxAge(3600L);
// 4)允许的头信息
config.addAllowedHeader("*");
//2.添加映射路径,我们拦截一切请求
UrlBasedCorsConfigurationSource configSource = new UrlBasedCorsConfigurationSource();
configSource.registerCorsConfiguration("/**", config);
//3.返回新的CorsFilter.
return new CorsFilter(configSource);
}*/
}
......@@ -54,7 +54,7 @@ public class SynchronizationServiceImpl implements ISynchronizationService {
QuartzJob quartzJob = quartzJobService.getBaseMapper().selectById("1");
if (StringUtil.isNotNull(quartzJob)) {
if (quartzJob.getStatus() == 1) {
if (quartzJob.getStatus() == 0) {
quartzJobService.quartzJobResume(new QuartzJobResumeInVo(quartzJob.getJobClassName()));
return RestResponse.success();
}
......@@ -70,7 +70,7 @@ public class SynchronizationServiceImpl implements ISynchronizationService {
QuartzJob quartzJob = quartzJobService.getBaseMapper().selectById("1");
if (StringUtil.isNotNull(quartzJob)) {
if (quartzJob.getStatus() == 0) {
if (quartzJob.getStatus() == 1) {
quartzJobService.quartzJobPause(new QuartzJobPauseInVo(quartzJob.getJobClassName()));
return RestResponse.success();
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论