Spring Boot API with Multiple Controllers?

后端 未结 8 1062
孤城傲影
孤城傲影 2021-02-07 12:36

I am starting to learn Spring Boot. I am struggling to find an example with multiple RestControllers, which indicates to me that I may be doing something wrong. I am trying a ve

8条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-07 13:26

    Try this

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    
    @SpringBootApplication
    public class Main {
    
        public static void main(String[] args) {
    
            Object[] sources = new Object[2];
            sources[0] = Controller1.class;
            sources[1] = Controller2.class;
            SpringApplication.run(sources, args);
        }
    
    }
    

提交回复
热议问题