Java Spring的使用注解开发详解

作者:工一木子 时间:2023-04-27 03:00:40 

使用注解开发

在Spring4之后,要使用注解开发,必须要保证aop的包导入了

Java Spring的使用注解开发详解

使用注解需要导入context的约束,增加注解的支持

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:context="http://www.springframework.org/schema/context"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
       https://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       https://www.springframework.org/schema/context/spring-context.xsd">
   <!--开启注解的支持-->
   <context:annotation-config/>
</beans>

1.bean

2.属性如何注入

//等价于<bean id="user" class="com.gongyi.pojo.User"/>
//@Component组件
@Component
public class User {
   // 相当于<property name="name" value="gongyi"/>
   @Value("gongyi")
   public String name;
   //@Value("muzi")
   public void setName(String name) {
       this.name = name;
   }
}

3.衍生的注解

@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层!

  • dao【@Repository】

  • service【@Service】

  • controller【@Controller】

这四个注解功能都是一样的,都是代表将某个类注册到spring中,装配bean

4.自动装配

- Autowired:自动装配通过类型。名字
   如果Autowired不能唯一自动装配上属性,则需要通过 @Qualifier(value = "xxx")
- @Nullable 字段标记了这个注解,说明这个字段可以为null
- Resource:自动装配通过名字。类型

5.作用域

@Component
@Scope("singleton")
public class User {
   // 相当于<property name="name" value="gongyi"/>
   @Value("gongyi")
   public String name;
   //@Value("muzi")
   public void setName(String name) {
       this.name = name;
   }
}

6.小结

xml与注解:

  • xml更加万能,适用于任何场合,维护简单方便

  • 注解 不是自己类使用不了(比如DataSource类),维护相对复杂

xml与注解最佳实践:

  • xml用来管理bean

  • 注解只负责完成属性的注入

  • 我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持

<!--指定要扫描的包,这个包下的注解就会生效-->
<context:component-scan base-package="com.gongyi"/>
<!--开启注解的支持-->
<context:annotation-config/>

代码show

代码结构图:

Java Spring的使用注解开发详解

1.新建一个模块:

spring-06-anno

2.新建pojo包及类

//等价于<bean id="user" class="com.gongyi.pojo.User"/>
//@Component组件
@Component
@Scope("singleton")
public class User {
   // 相当于<property name="name" value="gongyi"/>
   @Value("gongyi")
   public String name;
   //@Value("muzi")
   public void setName(String name) {
       this.name = name;
   }
}

3.新建dao包及类

@Repository
public class UserDao {
}

4.新建service包及类

@Service
public class UserService {
}

5.新建controller包及类

@Controller
public class UserController {
}

6.新建配置文件applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:context="http://www.springframework.org/schema/context"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
       https://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       https://www.springframework.org/schema/context/spring-context.xsd">
   <!--指定要扫描的包,这个包下的注解就会生效-->
   <context:component-scan base-package="com.gongyi"/>
   <!--开启注解的支持-->
   <context:annotation-config/>
</beans>

7.测试

public class MyTest {
   public static void main(String[] args) {
       ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
       User user = (User) context.getBean("user");
       System.out.println(user.name);
   }
}

彩蛋

1.被spring托管的类在idea中的显示

1)未被托管前

Java Spring的使用注解开发详解

2)配置托管

Java Spring的使用注解开发详解

3)托管后

Java Spring的使用注解开发详解

来源:https://blog.csdn.net/Prince140678/article/details/122380413

标签:Java,Spring,注解,开发
0
投稿

猜你喜欢

  • Android编程自定义AlertDialog样式的方法详解

    2023-09-26 20:55:15
  • 利用反射获取Java类中的静态变量名及变量值的简单实例

    2022-12-09 17:56:06
  • 工作中禁止使用Executors快捷创建线程池原理详解

    2021-11-24 20:55:48
  • Java泛型与数据库应用实例详解

    2023-08-14 09:37:15
  • C语言实现简单弹跳小球

    2022-07-03 12:54:34
  • JavaEE中用response向客户端输出中文数据乱码问题分析

    2022-07-14 00:39:27
  • 浅析java移位符的具体使用

    2023-12-21 09:36:13
  • Android 系统语言切换监听和设置实例代码

    2021-08-06 16:18:25
  • Java解析使用JSON的多种方法

    2022-08-13 00:18:01
  • Java面试题冲刺第二十四天--并发编程

    2023-08-31 05:39:02
  • Java基于接口实现模拟动物声音代码实例

    2022-07-28 04:46:07
  • Java实现贪吃蛇游戏(1小时学会)

    2023-06-29 00:54:02
  • 浅谈MyBatis中@MapKey的妙用

    2023-09-25 10:42:02
  • Android AndFix热修复原理详情

    2023-03-02 09:17:07
  • Android 检测键盘显示或隐藏键盘的实现代码

    2022-09-08 09:14:05
  • Spring Boot使用Allatori代码混淆的方法

    2023-11-24 16:34:55
  • Java 线程池ExecutorService详解及实例代码

    2022-09-02 17:07:24
  • 用c#实现简易的计算器功能实例代码

    2022-05-09 19:28:51
  • C#9.0推出的4个新特性介绍

    2021-10-10 07:49:29
  • 基于Class.forName()用法及说明

    2021-06-20 19:09:30
  • asp之家 软件编程 m.aspxhome.com