SpringBoot 配置类 @Bean 例子 Bertha 。 2023-07-03 06:21 75阅读 0赞 在Spring中 我们可以通过依赖注入 完成类之间的通信, SpringBoot则可以通过配置类 来实现我们所需要的功能。 我们以Service 调用 Dao 来做例子 //配置类 @Configuration public class AppConfig { @Bean //通过@bean来实现<bean>的功能 public StudentService studentService() { //等价<bean id=""> StudentService stuService= new StudentService(); StudentDao studentDao= new StudentDao(); stuService.setStudentDao(studentDao); return stuService; //返回值 等价<bean class=""> } @Bean StudentDao studentDao() { StudentDao stuDao= new StudentDao(); return stuDao; } } Service @Component public class StudentService { private static StudentDao studentdao; public StudentService() { } public StudentDao getStudentDao() { return studentdao; } public void setStudentDao(StudentDao dao) { this.studentdao = dao; } @Test public void add() { System.out.println("Service..."); } } Dao @Component public class StudentDao { public StudentDao() { } @Test public void add() { System.out.println("Dao........"); } } 测试 @Test public void contextLoads() { //System.out.println(student1); StudentService service = new StudentService(); //StudentDao dao = new StudentDao(); //service.setStudentDao(dao); service.add(); service.getStudentDao().add(); } ![20200203145258567.png][] [20200203145258567.png]: https://img-blog.csdnimg.cn/20200203145258567.png
相关 类路径配置错误:Java类找不到例子 这个错误通常发生在Java编程中,当你的代码试图引用一个不在类路径(classpath)下的类时,就会出现这种错误。 解决方法如下: 1. **确认类名和路径**:确保你要 淩亂°似流年/ 2024年09月10日 10:33/ 0 赞/ 46 阅读
相关 SpringBoot—bean工具类封装 关注 wx:`CodingTechWork` 需求 在Java开发代码中,经常会有一些对象Bean转换的需求,如下进行模板总结。 模板 publ 左手的ㄟ右手/ 2024年03月24日 14:06/ 0 赞/ 81 阅读
相关 springboot中动态获取bean工具类 在springmvc或者springboot的项目中,经常遇到需要获取其他的bean的类,从而使用该bean内部的一些方法,以供业务调用,我们知道,在spring项目中,某个被 雨点打透心脏的1/2处/ 2023年10月18日 13:05/ 0 赞/ 133 阅读
相关 SpringBoot 配置类 @Bean 例子 在Spring中 我们可以通过依赖注入 完成类之间的通信, SpringBoot则可以通过配置类 来实现我们所需要的功能。 我们以Service 调用 Dao 来做例子 Bertha 。/ 2023年07月03日 06:21/ 0 赞/ 76 阅读
相关 springboot启动类配置 pom.xml: <properties> <start-class>class_path</start-class> </propert 迷南。/ 2022年07月12日 07:03/ 0 赞/ 219 阅读
相关 springboot配置:通过工具类来获取spring容器中的bean \\由于公司电脑限制,完全手敲,有单字错误望理解\\ @component @SuppressWarnings("static-access") public class ╰+哭是因爲堅強的太久メ/ 2022年04月15日 04:42/ 0 赞/ 479 阅读
相关 SpringBoot配置@PropertySource、@ImportResource、@Bean注解 引言 @ConfigurationProperties 与@Bean结合为属性赋值 与@PropertySource(只能用properties文件)结 一时失言乱红尘/ 2022年03月10日 08:12/ 0 赞/ 292 阅读
相关 springboot例子 @Mapper public interface FinancingMapper { @Insert("<script 忘是亡心i/ 2021年11月04日 10:14/ 0 赞/ 306 阅读
相关 jsp+servlet+bean+mysql例子 mysql数据库是demo,表是stu,只有id和name字段。 本例子中jsp有添加和查询功能。命名有点乱,只是为了实现功能,回忆下基础内容。 <%@ page 青旅半醒/ 2021年09月26日 11:00/ 0 赞/ 192 阅读
还没有评论,来说两句吧...