spring-注解驱动-01

注解有:@Controller 标注是一个控制层
@Service :标注是一个业务层
@Repository:标注是一个持久层
@Configuration:表示是一个配置类
@ComponentScan:表示扫描包与spring bean.xml文件中的扫描包效果一致
下面看是示例:
一:这是一个配置类

package com.aaa.config;

import com.aaa.pojo.Person;
import org.springframework.context.annotation.*;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Service;

@Configuration //告诉spring这是一个配置类
/*
@ComponentScan指定扫描包
Filter[] includeFilters 指定只扫描那些包
Filter[] excludeFilters() 指定不扫描那些包
*/
/*
* excludeFilters={
        @ComponentScan.Filter(type = FilterType.ANNOTATION,classes = {
                Controller.class, Service.class
        })
}
指定扫描的时候按照什么规则排除那些组件
*
*includeFilters ={
        @ComponentScan.Filter(type = FilterType.ANNOTATION,classes = {Controller.class})
},useDefaultFilters = false

指定只扫描那些包, @ComPonentScan 默认是指定的包都生效
* */
/*
* @ComponentScans指定扫描策略 可以写多个@ComponentScan
 * 可以多写几个规则
* */
@ComponentScan(value = "com.aaa")
public class MainConfig {
    @Bean("persons")
    //@Bean代表的就是注册到spring容器中的 相当于以前 new Person
    //@Bean中可以指定注册到spring中的id名
    public Person person(){
        return new Person("liSi",13);
    }

}

业务层:

package com.aaa.service;

import org.springframework.stereotype.Service;

@Service
public class BookService {
}

控制器层

package com.aaa.controller;

import org.springframework.stereotype.Controller;

@Controller
public class BookController {
}

package com.aaa.dao;

持久层
import org.springframework.stereotype.Repository;

@Repository
public class BookDao {
}

测试

//使用配置类进行调试
    @Test
    public void ATest(){

       ApplicationContext apx = new AnnotationConfigApplicationContext(MainConfig.class);
        Person bean = apx.getBean(Person.class);
        System.out.println(bean);
        //查看注册在spring 中的id值
        String[] bt = apx.getBeanNamesForType(Person.class);
        for (String s : bt) {
            System.out.println(s);
        }
    }

总结:使用了这写注解之后,就不需要写spring的xml文件了
方便了我们的开发,注解减少了代码量。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值