1.spring配置檔案的基本語法:
配置檔案:
<?
xmlversion="1.0"
encoding="utf-8"
?>
<
beans
xmlns:xsi=""
xmlns=""
xsi:schemalocation="
/spring-beans-4.2.xsd "
>
<
bean
name="user"
class="cn.
example
.bean.user"
scope="singleton"
init-method="init"
destroy-method="destory"
>
bean
>
//1 載入
src
//2 從容器中獲取已經被spring框架建立的user物件,"user" 是定義在配置檔案中
bean標籤中的name屬性的值
,預設單例,每次獲取的是同乙個物件
user u = (user) ac.getbean("user");
//user u2 = (user) ac.getbean("user");
//3 列印user物件
system.out
.println(u.hashcode());
Spring Spring框架基本配置檔案解析
中與spring有關的配置。其中還有乙個元素,意為 哪一些url結構的請求,當使用 時,表示所用請求都將先 至dispatcherservlet,也有程式猿喜歡使用.do與.htm等字尾。配置用於自動載入靜態資源,如css js html 本文章只能告訴你大概要使用spring mvc所需的配置項,...
spring配置檔案
1 配置檔案的簡化 1 屬性的 property name foo value foovalue value property 簡化為 property name foo value foovalue 2 引用bean property name foo ref bean foobean prope...
spring配置檔案
context annotation config 是用於啟用那些已經在spring容器裡註冊過的bean上面的註解,也就是顯示的向spring註冊 autowiredannotationbeanpostprocessor commonannotationbeanpostprocessor pers...