SpringBoot.02.SpringBoot创建对象与属性注入
Posted 潮汐先生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot.02.SpringBoot创建对象与属性注入相关的知识,希望对你有一定的参考价值。
SpringBoot创建对象与属性注入
前言
所谓SpringBoot创建对象就是将对象交给Spring来管理。在SpringBoot中我们可以使用注解。比如我们常用的@Component
及@Controller
、@Service
、@Repository
等。不过这种方式一次只能创建一个对象;此外我们还可以使用@Configuration
+ @Bean
的方式一次性创建多个对象。
而属性注入是指我们可以将在配置文件中配置的信息注入到java文件中来使用。这样的使用场景在实际开发中是普遍存在的。比如我们要集成高德定位需要用到搞的提供的secret,这个值不能直接写死在代码中而只能写在配置文件中。而实际使用是在java中,这就需要我们将该属性值从配置文件注入到当前的java文件中。有关属性注入分为基本属性注入
和对象注入
。
下面我们以springboot-02-initializr
项目为例来演示在SpringBoot创建对象与属性注入。
创建对象
单个对象的创建
在springboot中可以管理单个对象可以直接使用spring框架中注解形式创建。常用的注解如下:
-
@Component
: 通用的对象创建注解 -
@Controller
:用来创建控制器对象 -
@Service
:用来创建业务层对象 -
@Repository
:用来创建DAO层对象
原理上以上四个注解可以互相替代,@Component注解修饰了下面3个注解。在Spring中为了区分MVC各层,不建议这几个注解混用
1.TestController.java
import com.christy.service.TestService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @Author Christy
* @Date 2021/9/1 11:06
**/
@RestController
@RequestMapping("test")
public class TestController
private static final Logger log = LoggerFactory.getLogger(TestController.class);
@Value("$server.port")
private Integer port;
/**
* Spring官方不再建议使用该种方式进行注入,转而使用构造函数的方式
*/
/*@Autowired
private TestService testService;*/
private TestService testService;
@Autowired
public TestController(TestService testService)
this.testService = testService;
@RequestMapping("hello")
public String sayHello()
log.info(testService.sayHello());
return testService.sayHello() + "current port is " + port;
2.TestService
/**
* @Author Christy
* @Date 2021/9/1 14:25
**/
public interface TestService
String sayHello();
import com.christy.service.TestService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
/**
* @Author Christy
* @Date 2021/9/1 14:26
* @Service 该注解标识当前对象为一个业务处理对象,并将当前对象交由Spring管理,默认在Spring工厂的名字是类名首字母小写
**/
@Service
public class TestServiceImpl implements TestService
private static final Logger log = LoggerFactory.getLogger(TestServiceImpl.class);
@Override
public String sayHello()
log.info("Hello SpringBoot!");
return "Hello SpringBoot!";
3.测试
启动项目,在浏览器中访问http://localhost:8802/test/hello
,结果如下图所示:
由结果我们可以看到TestService在Spring中成功创建,并且在TestController中成功注入了。
多个对象的创建
如何在springboot中像spring框架一样通过xml创建多个对象?SpringBoot也提供了如**@Configuration + @Bean
**注解进行创建
@Configuration
:代表这是一个spring的配置类,相当于Spring.xml配置文件@Bean
:用来在工厂中创建这个@Bean注解标识的对象
@Bean将标识方法的返回值交由Spring工厂管理,在Spring中创建该对象。一般情况下我们将该方法名命名为返回值首字母小写
1.BeansConfig.java
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.Calendar;
/**
* @Author Christy
* @Date 2021/9/1 14:57
*
* @Configuration 标注在类上,作用:配置Spring容器(应用上下文),被它修饰的类表示可以使用Spring IoC容器作为bean定义的来源。
* 相当于把该类作为Spring的xml配置文件中的<beans>元素(并且包含命名空间)
* 简单的理解,被该注解标识的类就相当于SSM框架中的Spring.xml
* @Bean 标注在方法上,作用:注册bean对象,被标记的方法的返回值会作为bean被加入到Spring IoC容器之中,bean的名称默认为方法名。
* 相当于把该方法的返回值作为 xml 配置文件中<beans>的子标签<bean>
**/
@Configuration
public class BeansConfig
@Bean
public Calendar calendar()
return Calendar.getInstance();
2.TestController.java
import com.christy.service.TestService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Calendar;
/**
* @Author Christy
* @Date 2021/9/1 11:06
**/
@RestController
@RequestMapping("test")
public class TestController
private static final Logger log = LoggerFactory.getLogger(TestController.class);
@Value("$server.port")
private Integer port;
/**
* Spring官方不再建议使用该种方式进行注入,转而使用构造函数的方式
*/
/*@Autowired
private TestService testService;*/
private TestService testService;
private Calendar calendar;
@Autowired
public TestController(TestService testService, Calendar calendar)
this.testService = testService;
this.calendar = calendar;
@RequestMapping("hello")
public String sayHello()
log.info(testService.sayHello());
return testService.sayHello() + "current time is " + calendar.getTime();
3.测试
属性注入
基本属性注入
基本属性注入
又称单个属性注入
,使用注解@Value
可以注入八大基本类型
、String
、日期
、List
、Array
与Map
。下面我们来举例说明
1.application-dev.yml
# 开发环境端口号是8802
server:
port: 8802
# 基本类型
username: christy
age: 18
salary: 1800
gender: true
birthday: 2003/10/01 #日期类型必须是yyyy/MM/dd这种斜线类型的
# array、list与map
hobbya: money,belle,right
hobbyl: 抽烟,喝酒,烫头
hobbym: "'username':'christy','realname':'tide'"
2.TestController.java
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* @Author Christy
* @Date 2021/9/1 11:06
**/
@RestController
@RequestMapping("test")
public class TestController
private static final Logger log = LoggerFactory.getLogger(TestController.class);
// 注入基本数据类型、String、Date
@Value("$username")
private String username;
@Value("$age")
private Integer age;
@Value("$gender")
private Boolean gender;
@Value("$salary")
private Double salary;
@Value("$birthday")
private Date birthday;
// 注入数组
@Value("$hobbya")
private String[] hobbya;
// 注入list
@Value("$hobbyl")
private List<String> hobbyl;
// 注入map
@Value("#$hobbym")
private Map<String,String> hobbym;
/**
* Spring官方不再建议使用该种方式进行注入,转而使用构造函数的方式
*/
/*@Autowired
private TestService testService;*/
private TestService testService;
private Calendar calendar;
@Autowired
public TestController(TestService testService, Calendar calendar)
this.testService = testService;
this.calendar = calendar;
@RequestMapping("hello")
public String sayHello()
log.info(testService.sayHello());
System.out.println("姓名:" + username + ",年龄:" + age + ",性别:" + gender + ",生日:" + birthday + ",薪资:" + salary);
System.out.println("生平三大爱好:");
for (String hobby : hobbya)
System.out.print(hobby + "、");
System.out.println("生平三大爱好:");
hobbyl.forEach(hobby-> System.out.println(hobby + "、"));
System.out.println("map遍历");
hobbym.forEach((key,value)-> System.out.println("key = " + key+" value = "+value));
return testService.sayHello() + "current time is " + calendar.getTime();
3.测试
启动项目,在浏览器中访问http://localhost:8802/test/hello
,观察控制台。如下图所示:
对象注入
1.application-dev.yml
# 开发环境端口号是8802
server:
port: 8802
# 基本类型
username: christy
age: 18
salary: 1800
gender: true
birthday: 2003/10/01 #日期类型必须是yyyy/MM/dd这种斜线类型的
# array、list与map
hobbya: money,belle,right
hobbyl: 抽烟,喝酒,烫头
hobbym: "'username':'christy','realname':'tide'"
# 注入对象
user:
name: christy
age: 18
bir: 2003/10/01
2.User.java
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.Date;
/**
* @Author Christy
* @Date 2021/9/1 16:21
* @ConfigurationProperties 告诉SpringBoot将本类中的所有属性和配置文件中相关的配置进行绑定;
* prefix = "xxx":配置文件中哪个下面的所有属性进行一一映射
* 使用该注解记得要写getter与setter方法
**/
@Component
@ConfigurationProperties(prefix = "user")
public class User
private String username;
private Integer age;
private Date birthday;
public User()
public User(String username, Integer age, Date birthday)
this.username = username;
this.age = age;
this.birthday = birthday;
public String getUsername()
return username;
public void setUsername(String username)
this.username = username;
public Integer getAge()
return age;
public void setAge(Integer age)
this.age = age;
public Date getBirthday()
return birthday;
public void setBirthday(Date birthday)
this.birthday = birthday;
@Override
public String toString()
return "User" +
"username='" + username + '\\'' +
", age=" + age +
", birthday=" + birthday +
'';
3.TestController.java
import com.christy.entity.User;
import com.christy.service.TestService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.Map;
/**
* @Author Christy
* @Date 2021/9/1 11:06
**/
@RestController
@RequestMapping("test")
public class TestController
private static final Logger log = LoggerFactory.getLogger(TestController.class);
// 注入基本数据类型、String、Date
@Value("$username")
private String username;
@Value("$age")
private Integer age;
@Value("$gender")
private Boolean gender;
@Value("$salary")
private Double salary;
@Value("$birthday")
private Date birthday;
// 注入数组
@Value("$hobbya")
private String[] hobbya;
// 注入list
@Value("$hobbyl")
private List<String> hobbyl;
// 注入map
@Value("#$hobbym")
private Map<String,String> hobbym;
/**
* Spring官方不再建议使用该种方式进行注入,转而使用构造函数的方式
*/
/*@Autowired
private TestService testService;*/
private TestService testService;
private Calendar calendar;
private User user;
@Autowired
public TestController(TestService testService, Calendar calendar, User user)
this.testService = testService;
this.calendar = calendar;
this.user = user;
@RequestMapping("hello")
public String sayHello()
log.info(testService.sayHello());
System.out.println("姓名:" + username + ",年龄:" + age + ",性别:" + gender + ",生日:" + birthday + ",薪资:" + salary);
System.out.println("生平三大爱好:");
for (String hobby : hobbya)
System.out.print(hobby + "、");
System.out.println();
System.out.println("生平三大爱好:");
hobbylSpringBoot.02.SpringBoot创建对象与属性注入
创青春-数字经济赛道,中国创翼临沂市决赛,创客中国-中小企业创客比赛-临沂市决赛