Spring搭建

一、基础核心架包

       我

二、配置配置文件

官方推荐配置文件名为:applicationContext.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"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

<!--对象的创建-->
    <!-- bean definitions here -->
	<bean id="example" class="com.feicui.dao.ExampleImp"/>
</beans>

猜你喜欢

转载自blog.csdn.net/rosemaryyoudu/article/details/84299394
今日推荐