框架一:Spring简单搭建 以及Spring知识

Spring基于maven框架

1. 搭建maven,单纯的spring可以不选择webapp 1.0类型,默认即可

http://note.youdao.com/noteshare?id=1aadd73be211e99df15068befea1a036&sub=9F330366D2AA443DBCE57CF611F50EC0

2. 对maven进行配置更改版本–一共三个目录

需要三个目录

3. 引入Spring所需要的基础jar包

	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-context</artifactId>
		<version>4.3.6.RELEASE</version>
	</dependency>		
	<!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-core</artifactId>
		<version>4.3.6.RELEASE</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/org.springframework/spring-beans -->
	<dependency>
		<groupId>org.springframework</groupId>
		<artifactId>spring-beans</artifactId>
		<version>4.3.6.RELEASE</version>
	</dependency>
	<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
	<dependency>
		<groupId>commons-logging</groupId>
		<artifactId>commons-logging</artifactId>
		<version>1.2</version>
	</dependency>

4.建立application.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:aop="http://www.springframework.org/schema/aop"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">
<bean   -----将类交给bean管理----  id随意   class 类的所在位置  ---->
<beans>

5.测试

ApplicationContext context=new ClassPathXmlApplicationContext(“application.xml”);–bean全部初始化
helloworld b = (helloworld) context.getBean(“bean中的id”); ----强制类型转换
//getbean方法 取出放在bean中的类

猜你喜欢

转载自blog.csdn.net/hzb20120211/article/details/82821912
今日推荐