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;

相关推荐
咩咩啃树皮8 分钟前
第40篇:Vue3组件化开发精讲——组件拆分、复用、父子通信、工程化架构
java·前端·架构
阳光是sunny10 分钟前
LangGraph中的Reducer是什么
前端·人工智能·后端
灯澜忆梦28 分钟前
GO_并发编程---定时器
开发语言·后端·golang
阳光是sunny30 分钟前
从链到图:LangGraph 入门基础全解析
前端·人工智能·后端
鱟鲥鳚42 分钟前
Spring Boot 集成 LangChain4j:从模型调用到 Tool Calling(Demo版)
java·spring boot
皮皮林5511 小时前
开源实力派,给本地 AI 装上深度调研能力,一张 3090 跑到 95.7 分!
后端
努力的小雨1 小时前
把 Windows 桌面图标做成一个会自己运转的小世界
后端
武子康2 小时前
Search Console Platform Properties 扩大 SEO 资产边界:从 Page Ranking 到 Topic Coverage(5 类误读边界 + 3 表数据层设计)
前端·人工智能·后端
大模型码小白2 小时前
【Python零基础教程】继承、多态与魔法函数:面向对象编程三大核心特性详解
java·大数据·开发语言·人工智能·python·ai编程
腾渊信息科技公司3 小时前
Spring Boot对接MES实战:视觉检测数据自动同步方案
java·人工智能·spring boot·后端·计算机视觉·ai·软件需求