Spring常用注解!!!

pom.xml:

XML 复制代码
<dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>6.0.12</version>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.19</version>
        </dependency>
    </dependencies>

applicationContext.xml:

XML 复制代码
<?xml version="1.0" encoding="UTF-8"?>
<!--1、注意:要导入schema约束-->
<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
                           http://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.by"></context:component-scan>
    <!--加载config.properties-->
    <context:property-placeholder location="config.properties"></context:property-placeholder>
</beans>

log4j.properties:

XML 复制代码
# Global logging configuration
log4j.rootLogger=DEBUG, stdout
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

config.porperties:

XML 复制代码
name=小王
age=18

UserDaoImpl:

java 复制代码
package com.by.dao;


import org.springframework.stereotype.Repository;

/**
 * 持久层实现类
 */
//@Repository("userDao")
@Repository //不配置默认为类名首字母小写
public class UserDaoImpl implements UserDao {

    @Override
    public void addUser() {
        System.out.println("insert into tb_user......");
    }
}

UserServiceImpl:

java 复制代码
package com.by.service;

import com.by.dao.UserDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.ImportResource;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;

/**
 * 业务层实现类
 */
//@Service("userService")
@Service //不配置默认为类名首字母小写
//@Component
@Scope("prototype")
public class UserServiceImpl implements UserService {

    @Autowired //注入属性
    private UserDao userDao;
    @Value("${name}")
    private String name;
    @Value("${age}")
    private Integer age;

    @Override
    public void addUser() {
        System.out.println(userDao + "--" + name + "__" + age);
        userDao.addUser();
    }
}

总结:

IOC:

1.@Service:用于service层,@Service("userService")指定配置的id,@Service //不配置默认为类名首字母小写。
2.@Repository:用于dao层,@Repository("userDao")指定配置的id,@Repository //不配置默认为类名首字母小写。
3.@Component:用于配置与三层架构之外的类,也可用于其它几层,使用方法同上。
4.@Scope:用于配置bean的作用域范围,使用方法:@Scope("prototype")

DI:

1.@Autowired:用于注入属性,
@Autowired //注入属性

private UserDao userDao;

2.@Resource(name="userDao"),主要用于自定义类型

@Autowired //注入属性
private UserDao userDao;

3.@value("${}"),主要用于基本数据类型和String类型,需要在config.properties文件中声明属性,在applicationContext.xml文件中加载config.properties文件

@Value("${name}")
private String name;

相关推荐
Penge6661 分钟前
为什么 Go 中值类型有时无法实现接口?—— 从指针接收器说起
后端
用户90555842148052 分钟前
Milvus源码分析:向量查询(Search)
后端
间彧3 分钟前
Java HashMap:链表工作原理与红黑树转换
后端
哲学七8 分钟前
Springboot3.5.x版本引入javaCv相关库版本问题以及精简引入包
java·ffmpeg
亚雷15 分钟前
深入浅出达梦共享存储集群数据同步
数据库·后端·程序员
作伴18 分钟前
多租户架构如何设计多数据源
后端
Aqua Cheng.23 分钟前
代码随想录第七天|哈希表part02--454.四数相加II、383. 赎金信、15. 三数之和、18. 四数之和
java·数据结构·算法·散列表
Nebula_g24 分钟前
Java哈希表入门详解(Hash)
java·开发语言·学习·算法·哈希算法·初学者
努力努力再努力wz26 分钟前
【C++进阶系列】:万字详解unordered_set和unordered_map,带你手搓一个哈希表!(附模拟实现unordered_set和unordered_map的源码)
java·linux·开发语言·数据结构·数据库·c++·散列表