spring 使用篇
享知
Java源码爱好者、熟悉分布式技术、中间件等技术.
格言: 故不积跬步,无已至千里;不积小流,无以成江海;
展开
-
Spring依赖注入
Spring依赖注入依赖注入的方式属性注入Setter方法注入接口注入申明Beand的注解@Comonet 没有明确声明角色的功能@Service 在业务逻辑层使用@Repository 在数据操作层使用@Controller 在表现层(SpringMvc中)使用,其中RestControlelr也是一样的含义注入Bean的注解@Autowired@Injet@...原创 2019-10-12 13:38:31 · 91 阅读 · 0 评论 -
第一章 spring扩展xml
如何在spring容器中扩展xml第一步: 定义beanpublic class Bean { private String name; private int age; public String getName() { return name; } public void setName(String name) { this.name = name; } p...原创 2019-09-24 16:40:23 · 793 阅读 · 0 评论 -
第二章 spring配置文件占位符的使用
spring配置文件占位符的使用定义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...原创 2019-09-25 20:03:53 · 352 阅读 · 0 评论 -
第三章 component-scan&annotation-config>
component-scan&annotation-config>他们之间的区别context:annotation-config 他的作用是激活一下注解@Resource@Autowired注解<context:component-scan base-package=“com.ext”></context:component-scan> ba...原创 2019-09-29 09:04:31 · 134 阅读 · 0 评论 -
手写Spring框架
com.cn.spring.context.ClassPathXmlApplicationContext#ClassPathXmlApplicationContext(java.lang.String)加载配置类信息public ClassPathXmlApplicationContext(String configLocation) throws Exception { this(c...原创 2019-10-11 14:17:23 · 126 阅读 · 0 评论