服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - SpringBoot之Java配置的实现

SpringBoot之Java配置的实现

2021-07-13 15:35JohnEricCheng Java教程

这篇文章主要介绍了SpringBoot之Java配置的实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

java配置也是spring4.0推荐的配置方式,完全可以取代xml的配置方式,也是springboot推荐的方式。

java配置是通过@configuation和@bean来实现的:

  1、@configuation注解,说明此类是配置类,相当于spring的xml方式

  2、@bean注解,注解在方法上,当前方法返回的是一个bean

eg:

此类没有使用@service等注解方式

?
1
2
3
4
5
6
7
package com.wisely.heighlight_spring4.ch1.javaconfig;
 
public class functionservice {
  public string sayhello(string world) {
    return "hello " + world + "!";
  }
}

此类没有使用@service注解lei,也没有使用@autowire注入bean

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.wisely.heighlight_spring4.ch1.javaconfig;
 
public class usefunctionservice {
  
  functionservice functionservice;
 
  public void setfunctionservice(functionservice functionservice) {
    this.functionservice = functionservice;
  }
  
  public string sayhello(string world) {
    return functionservice.sayhello(world);
  }
}

1、使用@configuation注解说明此类是一个配置类

2、使用@bean注解的方式注解在方法上,返回一个实体bean,bean的名称是方法名。

3、注入functionservice的bean的时候,可以直接使用functionservice方法。

4、注解将functionservice作为参数直接传入usefunctionservice。在spring容器中,只要在容器中存在一个bean,就可已在另一个bean的声明方法的参数中直接使用。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.wisely.heighlight_spring4.ch1.javaconfig;
 
import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.configuration;
 
@configuration
public class javaconfig {
  @bean
  public functionservice functionservice() {
    return new functionservice();
  }
  
  @bean
  public usefunctionservice usefunctionservice() {
    usefunctionservice usefunctionservice = new usefunctionservice();
    usefunctionservice.setfunctionservice(functionservice());
    return usefunctionservice;
  }
  
  @bean
  public usefunctionservice usefunctionservice(functionservice functionservice) {
    usefunctionservice usefunctionservice = new usefunctionservice();
    usefunctionservice.setfunctionservice(functionservice);
    return usefunctionservice;
  }
}

测试类:

?
1
2
3
4
5
6
7
8
9
10
11
12
package com.wisely.heighlight_spring4.ch1.javaconfig;
 
import org.springframework.context.annotation.annotationconfigapplicationcontext;
 
public class main {
  public static void main(string[] args) {
    annotationconfigapplicationcontext context = new annotationconfigapplicationcontext(javaconfig.class);
    usefunctionservice usefunctionservice = context.getbean(usefunctionservice.class);
    system.out.println(usefunctionservice.sayhello("java config"));
    context.close();
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://www.cnblogs.com/JohnEricCheng/p/8621981.html

延伸 · 阅读

精彩推荐