Browse Source

server startup error modify (#1263)

* ConnectionFactory add paging intercepter

* remove spotbugs-annotations.jar LGPL protocol

* test

* catch exception transaction method does not take effect to modify

* .evn rollback

* DataSourceService rollback

* LogViewServiceGrpc rollback

* dockerfile add application-api.properties and change application.properties to application-dao.properties

* server startup error modify
pull/2/head
qiaozhanwei 5 years ago committed by lgcareer
parent
commit
26b1eb214c
  1. 10
      dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/CombinedApplicationServer.java

10
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/CombinedApplicationServer.java

@ -27,11 +27,11 @@ import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Import; import org.springframework.context.annotation.Import;
import springfox.documentation.swagger2.annotations.EnableSwagger2; import springfox.documentation.swagger2.annotations.EnableSwagger2;
@SpringBootApplication //@SpringBootApplication
@ServletComponentScan //@ServletComponentScan
@ComponentScan("org.apache.dolphinscheduler") //@ComponentScan("org.apache.dolphinscheduler")
@Import({MasterServer.class, WorkerServer.class}) //@Import({MasterServer.class, WorkerServer.class})
@EnableSwagger2 //@EnableSwagger2
public class CombinedApplicationServer extends SpringBootServletInitializer { public class CombinedApplicationServer extends SpringBootServletInitializer {
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {

Loading…
Cancel
Save