GenericApplicationContext怎么在Spring Boot中使用
今天就跟大家聊聊有关GenericApplicationContext怎么在Spring Boot中使用,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
Spring Boot的POM.xml:
<?xmlversion="1.0"encoding="UTF-8"?> <projectxmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.zetcode</groupId> <artifactId>genappctx</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>genappctx</name> <description>UsingGenericApplicationContext</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.0.RELEASE</version> <relativePath/><!--lookupparentfromrepository--> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>11</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
这是Maven pom.xml文件。这spring-boot-starter-parent是一个父POM,为使用Maven构建的应用程序提供依赖性和插件管理。它spring-boot-starter是核心启动器,包括自动配置支持,日志记录和YAML。在spring-boot-starter-test春季增加了测试支持。将spring-boot-maven-pluginSpring应用程序包转换为可执行的JAR或WAR归档文件。
application.properties:
spring.main.banner-mode=off logging.level.root=ERROR logging.pattern.console=%d{dd-MM-yyyyHH:mm:ss}%magenta([%thread])%highlight(%-5level))%logger。%M-%msg%n
这个application.properties是Spring Boot中的主要配置文件。我们关闭Spring标题,仅减少记录到错误的数量,并设置控制台日志记录模式。
TimeService.java:
publicclassTimeService{ publicInstantgetNow(){ returnInstant.now(); } }
TimeService包含一个返回当前日期和时间的简单方法。此服务类将在我们的通用应用程序上下文中注册。
@SpringBootApplication publicclassMyApplicationimplementsCommandLineRunner{ @Autowired privateGenericApplicationContextcontext; publicstaticvoidmain(String[]args){ SpringApplication.run(MyApplication.class,args); } @Override publicvoidrun(String...args)throwsException{ context.registerBean("com.zetcode.Service.TimeService", TimeService.class,()->newTimeService()); vartimeService=(TimeService)context.getBean(TimeService.class); System.out.println(timeService.getNow()); context.registerShutdownHook(); } }
MyApplication是设置Spring Boot应用程序的入口点。该@SpringBootApplication注释能够自动配置和组件扫描。这是一个方便的注释,等同于@Configuration,@EnableAutoConfiguration以及@ComponentScan注释。
这里我们注入了GenericApplicationContext。使用该registerBean()方法注册了 一个新的TimeService bean 。
下面是测试MyApplicationTests.java:
@RunWith(SpringRunner.class) @SpringBootTest publicclassMyApplicationTests{ @Autowired privateGenericApplicationContextcontext; @Test publicvoidtestNow(){ vartimeService=(TimeService)context.getBean("com.zetcode.Service.TimeService"); varnow=timeService.getNow(); assertThat(now.isBefore(Instant.now())); } }
运行:
mvn -q spring-boot:run
看完上述内容,你们对GenericApplicationContext怎么在Spring Boot中使用有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注恰卡编程网行业资讯频道,感谢大家的支持。
推荐阅读
-
vue动态添加删除输入框(springboot vue怎么让数据库显示出来)
springbootvue怎么让数据库显示出来?一般情况下是前端调阅后端接口,来获取到数据库的数据,后端哪里会把数据库的数据整理...
-
springboot实现基于aop的切面日志
本文实例为大家分享了springboot实现基于aop的切面日志的具体代码,供大家参考,具体内容如下通过aop的切面方式实现日志...
-
SpringBoot定时任务功能怎么实现
-
SpringBoot中的@Import注解怎么使用
-
SpringBoot整合Lombok及常见问题怎么解决
-
springboot图片验证码功能模块怎么实现
-
Springboot+SpringSecurity怎么实现图片验证码登录
-
SpringBoot注解的知识点有哪些
SpringBoot注解的知识点有哪些这篇“SpringBoot注...
-
SpringBoot2.x中management.security.enabled=false无效怎么解决
-
springboot怎么禁用某项健康检查
springboot怎么禁用某项健康检查今天小编给大家分享一下sp...