spring注解学习总结

总起:
spring的ioc注入有三种方式:
(1)构造方法:例如

  <bean id="runner" class="org.apache.commons.dbutils.QueryRunner"       scope="prototype">
    <constructor-arg name="ds" ref="dataSource"></constructor-arg>
 </bean>

(2)setter方式:

<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
    <property name="driverClass" value="com.mysql.cj.jdbc.Driver"></property>
    <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test"></property>
    <property name="user" value="root"></property>
    <property name="password" value="123456"></property>
</bean>

(3)注解方式:
标记spring需要加载进bean容器的关键字:
按使用场景分
(1)@Repository 用于持久层
(2)@Service(“accountService”)用于业务层
(3)@Controller 用于表现层
(4)@Component(“accountService”) 其他
注入使用bean容器中类实例关键字:
(1)@Resource(name=“accountDao”) java自带
(2)spring中定义的
@Autowired
@Qualifier(“accountDao”)
private AccountDao accountDao;

1、注解方式配置bean,类似xml改成java类配置,实例如下

package config;
import com.mchange.v2.c3p0.ComboPooledDataSource;
import org.apache.commons.dbutils.QueryRunner;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;

import javax.sql.DataSource;


@Configuration
@ComponentScan(basePackages = {"com.fang"})
@Import({JdbcConfig.class})
public class SpringConfiguration {

    @Bean
   @Scope("prototype")
    public QueryRunner createQueryRunner(DataSource dataSource){
        return new QueryRunner(dataSource);
    }

    @Bean(name="dataSource")
    public DataSource CreateDataSource(){

        try{
            ComboPooledDataSource ds = new ComboPooledDataSource();
            ds.setDriverClass("com.mysql.jdbc.Driver");
            ds.setJdbcUrl("jdbc:mysql://localhost:3306/test");
            ds.setUser("root");
            ds.setPassword("123456");
            return ds;
        }catch (Exception e) {
           throw new RuntimeException(e);
        }
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值