The spring framework provides us with three injection methods, namely set injection, constructor injection, and interface injection. Interface injection is not required. The first two methods are introduced below.
1, set injection
Using the set method of the attribute to initialize it becomes set injection.
1) Assign values to ordinary character types.
public class User{ privateString username; publicString getUsername() { returnusername; } publicvoid setUsername(String username) { this.username= username; } }
We only need to provide the set method of the attribute, and then go to the properties file to configure it so that the framework can find the beans tag of the applicationContext.xml file. Add bean tag to tag beans,
Specify id, class value, id value is not required, class value is the complete path where the object is located. Add the property
tag to the bean tag, requiring that the name value be consistent with the corresponding property name in the User class. The value value is the value we want to assign to the username attribute in the User class.
<bean id="userAction"class="com.lsz.spring.action.User" > <property name="username" value="admin"></property> </bean>
2) Assign a value to the object
Also provide the set method of the object
public class User{ private UserService userservice; public UserServicegetUserservice() { returnuser; } public void setUserservice(UserService userservice){ this.userservice= userservice; } }
In the configuration file, add the bean label declaration of UserService and the reference of the User object to UserService.
<!--对象的声明--> <bean id="userService" class="com.lsz.spring.service.UserService"></bean> <bean id="userAction"class="com.lsz.spring.action.User" > <property name="userservice" ref="userService"></property> </bean>
With this configuration, the framework will inject the UserService object into the User class.
3) Assign values to the list collection
Also provide the set method
public class User{ privateList<String> username; publicList<String> getUsername() { returnusername; } publicvoid setUsername(List<String> username) { this.username= username; } }
<bean id="userAction"class="com.lsz.spring.action.User" > <propertyname="username"> <list> <value>zhang,san</value> <value>lisi</value> <value>wangwu</value> </list> </property> </bean>
4) Assign values to the fields in the properties file
public class User{ privateProperties props ; publicProperties getProps() { returnprops; } publicvoid setProps(Properties props) { this.props= props; } }
<bean> <propertyname="props"> <props> <propkey="url">jdbc:oracle:thin:@localhost:orl</prop> <propkey="driverName">oracle.jdbc.driver.OracleDriver</prop> <propkey="username">scott</prop> <propkey="password">tiger</prop> </props> </property> </bean>
Note:
No matter what value is assigned, the name attribute value of the
2 Constructor injection
1) One parameter of the constructor
public class User{ privateString usercode; publicUser(String usercode) { this.usercode=usercode; } }
<bean id="userAction"class="com.lsz.spring.action.User"> <constructor-argvalue="admin"></constructor-arg> </bean>
2) When the constructor has two parameters
When the parameter is a non-string type, The type needs to be specified in the configuration file. If the type is not specified, the value will be assigned as the string type.
When the parameter types are inconsistent, the framework searches according to the type of the string, so the location of the parameter needs to be specified in the configuration file
<constructor-argvalue="admin"index="0"></constructor-arg> <constructor-argvalue="23" type="int"index="1"></constructor-arg>
This is the first parameter in the constructor It is of string type, and the second parameter is of int type

Spring+AI作为行业领导者,通过其强大、灵活的API和先进的功能,为各种行业提供了领先性的解决方案。在本专题中,我们将深入探讨Spring+AI在各领域的应用示例,每个案例都将展示Spring+AI如何满足特定需求,实现目标,并将这些LESSONSLEARNED扩展到更广泛的应用。希望这个专题能对你有所启发,更深入地理解和利用Spring+AI的无限可能。Spring框架在软件开发领域已经有超过20年的历史,自SpringBoot1.0版本发布以来已有10年。现在,无人会质疑,Spring

我想在将requestbody路由到给定的uri之前修改它。基于我正在使用的文档org.springframework.cloud.gateway.filter.factory.rewrite.modifyrequestbodygatewayfilterfactory修改正文。启动我的服务器时,服务器无法启动并出现以下错误原因:元素[spring.cloud.gateway.routes[0].filters[0].modifyrequestbody.class]未绑定。\n\n操作:\

简介RESTfulapi已经成为现代WEB应用程序中不可或缺的一部分。它们提供了一种标准化的方法来创建和使用Web服务,从而提高可移植性、可扩展性和易用性。在Java生态系统中,JAX-RS和springmvc是构建RESTfulAPI的两个最受欢迎的框架。本文将深入探讨这两种框架,比较它们的特性、优势和劣势,帮助您做出明智的决定。JAX-RS:JAX-RSAPIJAX-RS(JavaAPIforRESTfulWebServices)是由JavaEE开发的标准JAX-RSAPI,用于开发REST

深入剖析Spring框架的架构与工作原理引言:Spring是Java生态系统中最受欢迎的开源框架之一,它不仅提供了一套强大的容器管理和依赖注入功能,还提供了许多其他功能,如事务管理、AOP、数据访问等。本文将深入剖析Spring框架的架构与工作原理,并通过具体的代码示例来解释相关概念。一、Spring框架的核心概念1.1IoC(控制反转)Spring的核心

优化程序日志记录:log4j日志级别设置技巧分享摘要:程序的日志记录对于问题排查、性能调优和系统监控都起着关键作用。本文将分享log4j日志级别设置的技巧,包括如何设置不同级别的日志以及如何通过代码示例来说明设置过程。导语:在软件开发中,日志记录是一项非常重要的工作。通过记录程序在运行过程中的关键信息,可以帮助开发者找出问题发生的原因,进行性能优化和系统监控

JavaJNDI与spring集成的优势JavaJNDI与Spring框架的集成具有诸多优势,包括:简化JNDI的使用:Spring提供了抽象层,简化了JNDI的使用,无需编写复杂的JNDI代码。集中管理JNDI资源:Spring可以集中管理JNDI资源,便于查找和管理。支持多种JNDI实现:Spring支持多种JNDI实现,包括JNDI、JNP、RMI等。无缝集成Spring框架:Spring与JNDI的集成非常紧密,无缝集成Spring框架。如何集成JavaJNDI与Spring框架集成Ja

Oracle数据库连接方式详解在应用程序开发中,数据库连接是一个非常重要的环节,它承载着应用程序与数据库之间的数据交互。Oracle数据库是一款功能强大、性能稳定的关系型数据库管理系统,在实际开发中,我们需要熟练掌握不同的连接方式来与Oracle数据库进行交互。本文将详细介绍Oracle数据库的几种常见连接方式,并提供相应的代码示例,帮助读者更好地理解和应用

Java反射机制在Spring框架中广泛用于以下方面:依赖注入:通过反射实例化bean和注入依赖项。类型转换:将请求参数转换为方法参数类型。持久化框架集成:映射实体类和数据库表。AspectJ支持:拦截方法调用和增强代码行为。动态代理:创建代理对象以增强原始对象的行为。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
