|
@@ -0,0 +1,61 @@
|
|
|
+package com.activiti6;
|
|
|
+
|
|
|
+import org.activiti.rest.common.application.ContentTypeResolver;
|
|
|
+import org.activiti.rest.common.application.DefaultContentTypeResolver;
|
|
|
+import org.activiti.rest.service.api.RestResponseFactory;
|
|
|
+import org.mybatis.spring.annotation.MapperScan;
|
|
|
+import org.springframework.boot.SpringApplication;
|
|
|
+import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
+import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.cors.CorsConfiguration;
|
|
|
+import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
|
|
|
+import org.springframework.web.filter.CorsFilter;
|
|
|
+import org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer;
|
|
|
+import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@SpringBootApplication(exclude = {
|
|
|
+ org.springframework.boot.autoconfigure.security.SecurityAutoConfiguration.class,
|
|
|
+ org.activiti.spring.boot.SecurityAutoConfiguration.class,
|
|
|
+})
|
|
|
+@MapperScan("com.activiti6.mapper")
|
|
|
+//@ComponentScan(basePackages = {"org.activiti.rest"})
|
|
|
+public class Activiti5Application extends WebMvcConfigurerAdapter {
|
|
|
+ @Override
|
|
|
+ public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
|
|
|
+ configurer.favorPathExtension(false);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void main(String[] args) {
|
|
|
+ SpringApplication.run(Activiti5Application.class, args);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public RestResponseFactory createRestResponseFactory() {
|
|
|
+ return new RestResponseFactory();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public ContentTypeResolver createContentTypeResolver() {
|
|
|
+ return new DefaultContentTypeResolver();
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public FilterRegistrationBean corsFilter() {
|
|
|
+ UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
|
|
|
+ CorsConfiguration config = new CorsConfiguration();
|
|
|
+ config.setAllowCredentials(true);
|
|
|
+// config.addAllowedOrigin("http://localhost:8081");
|
|
|
+ config.addAllowedOrigin("*");
|
|
|
+ config.addAllowedHeader("*");
|
|
|
+ config.addAllowedMethod("*");
|
|
|
+ source.registerCorsConfiguration("/**", config); // CORS 配置对所有接口都有效
|
|
|
+ FilterRegistrationBean bean = new FilterRegistrationBean(new CorsFilter(source));
|
|
|
+ bean.setOrder(0);
|
|
|
+ return bean;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|