• SpringBoot搭建非web应用的两种方式


    方式一:

    在 直接在 main 方法中,根据 SpringApplication.run() 方法获取返回的 Spring 容器对象context上下文,再获取业务 bean 进行调用。

    @SpringBootApplication
    public class Application {
        public static void main(String[] args) {
            /**
             * SpringBoot程序启动后,返回值是ConfigurableApplicationContext,它也是一个Spring容器
             * 它其实相当于原来Spring容器中的ClasspathXmlApplicationContext
             */
    
            // 获取SpringBoot容器
            ConfigurableApplicationContext applicationContext = SpringApplication.run(Application.class, args);
    
            // 从Spring容器中获取指定的对象
            StudentService studentService = (StudentService) applicationContext.getBean("studentServiceImpl");
            BrokerConfig brokerConfig = applicationContext.getBean(BrokerConfig.class);
    
            // 调用业务方法
            String str = studentService.sayHello();
            System.out.println("str = " + str);
        }
    }
    

    方式二:

    Spring boot 的入口类实现 CommandLineRunner 接口

    @SpringBootApplication
    public class App implements CommandLineRunner {
        @Autowired
        BrokerConfig config;
    
        @Override
        public void run(String... args) throws Exception {
            System.out.println(config.getPort());
        }
    
        public static void main(String[] args) {
            SpringApplication.run(App.class, args);
        }
    }
    
    © 2017-2020 版权属于 QXQZX &
  • 相关阅读:
    1-4-Java 语言环境搭建
    1-3-JDK,JRE,JVM介绍
    1-2-java语言的特点及运行机制
    1-1-常用DOS命令与快捷键
    0-2-计算机硬件介绍
    一、JSP的3大指令Page,include,taglib
    springboot目录结构
    问题:qt按钮有时候点击没有反应
    vs2017+qt问题
    mysql问题
  • 原文地址:https://www.cnblogs.com/devhg/p/15783908.html
Copyright © 2020-2023  润新知