Spring学习(1)-spring遇到的问题

学习spring首先我们要面对的是一大堆的配置,application的beans配置是怎么来的,为什么有的配置不写,没法识别,没法补全。下面开始进入spring的配置。

这是一个典型的spring的配置项

<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"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-3.2.xsd
	http://www.springframework.org/schema/tx
	http://www.springframework.org/schema/spring-tx-3.2.xsd
	http://www.springframework.org/schema/aop
	http://www.springframework.org/schema/aop/spring-aop-3.2.xsd">

里面context,tx,aop都是怎么写的呢?

下面我们看看我们下载到的spring的zip包了Spring学习(1)-spring遇到的问题_第1张图片

进入后,随便打开一个包,

Spring学习(1)-spring遇到的问题_第2张图片

http://www.springframework.org/schema/aop
	http://www.springframework.org/schema/aop/spring-aop-3.2.xsd">

这样就找到一一对应的关系了。

你可能感兴趣的:(Spring学习(1)-spring遇到的问题)