zoukankan      html  css  js  c++  java
  • idea创建spring _fei

    idea创建spring

    spring 需要4+1 :beans、core、context、expression、commons-logging
    AOP: aop联盟、spring aop、aspect规范、spring aspect
    db: jdbc、tx
    测试: text
    web开发: spring web
    启动:mysql
    连接池:c3p0
    ************************************************
    spring注解配置报错:
     cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 'context:component-scan' 的声明
     少了那个配置那个;
     

    <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://camel.apache.org/schema/spring
           http://camel.apache.org/schema/spring/camel-spring.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-4.2.xsd">
                        
           <context:component-scan base-package="com.scau.beyondboy.demo_b"></context:component-scan>

    2.web开发,

    提供3个@Component注解衍生注解(功能一样)取代<bean class="">
    @Repository :dao层
    @Service:service层
    @Controller:web层
    3.依赖注入,给私有字段设置,也可以给setter方法设置
    普通值:@Value("")
    引用值:
    方式1:按照【类型】注入
    @Autowired
    方式2:按照【名称】注入1
    @Autowired
    @Qualifier("名称")
    方式3:按照【名称】注入2
    @Resource("名称")
    4.生命周期
    初始化:@PostConstruct
    销毁:@PreDestroy
    5.作用域
    @Scope("prototype") 多例

    3. 手动升级spring包的时候需要自己去spring官网下载和jdk对应的包

    其他: 

    spring创建参考网址: http://www.voidcn.com/article/p-dtmttqga-bma.html

    官网 spring 包下载地址

    mysql-connector-java各版本下载地址

  • 相关阅读:
    【设计模式】- 责任链篇
    【工具】
    【日常摘要】- 生成随机的姓名或手机号篇
    排序算法的时空复杂度、稳定性分析
    链表插入排序、链表归并排序
    图的存储结构
    二叉平衡树的插入和删除操作
    二叉排序树的查找、插入和删除
    哈希表
    堆的插入、删除和建立操作,堆排序
  • 原文地址:https://www.cnblogs.com/dafei4/p/12939212.html
Copyright © 2011-2022 走看看