码迷,mamicode.com
首页 > 编程语言 > 详细

spring 注解开发

时间:2020-07-19 00:32:25      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:conf   https   component   can   ati   type   注解   XML   name   

一、环境

1、导入包 maven

2、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.wt.pojo"/>
    <context:annotation-config/>

</beans>

二、具体实现

1、bean

@Component
public class User {
}

2、属性注入

package com.wt.pojo;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class User {
    @Value("wt")
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

 

3、衍生注解

dao [@Repository]

service [@Service]

controller[@Controller]

将类注入到spring容器中

4、自动装配注解

5、作用域注解

@Scope

spring 注解开发

标签:conf   https   component   can   ati   type   注解   XML   name   

原文地址:https://www.cnblogs.com/wt7018/p/13338118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!