<?
xmlversion
="1.0"
encoding
="utf-8"
?>
<
beans
xmlns
=""xmlns:xsi
=""xmlns:p
=""xsi:schemalocation
="/spring-beans-4.1.xsd"
>
beans
>
2.編寫domain,dao,service;
3.在spring中註冊元件:
要spring框架中可以使用二種方式:1 xml 2 annotation
<
bean
id="dao"
class
="com.demo.demodaoimpl"
/>
id 實體名稱 class 類名
4.獲得元件:
public
static
void
main(string
args)
5.實現ioc和di:
<
beanid=
class
=>
<
property
name
=ref
=/>
bean
>
6.使用spring指定構造方法建立物件:
<
beanid=
class
=>
bean
>
public class demoservice
public demoservice (demodao demodao)}
7.使用靜態工廠方法建立物件:
<
bean
id=demodao"
class
="com.factory.daofactory"
factory-method
="createdao"
/>
public class daofactory}
8.使用例項工廠方法建立物件:
<
bean
id="daofactory"
class
="com..factory.daofactory"
/>
<
bean
id="demodao"
factory-bean
="daofactory"
factory-method
="createdao"
/>
public class daofactory}
spring整合hibernate自動建立表
配置如下 hibernate.hbm2ddl.auto update hibernate.show sql true hibernate.dialect org.hibernate.dialect.mysql5dialect classpath cn itcast ssh domain hbm.xm...
spring 註解使用
一 配置web.xml 1 問題 spring專案中有多個配置檔案mvc.xml dao.xml 2 解決 在web.xml中 contextconfiglocation web inf xml 表示xml檔案路徑 xml表示字尾名為xml的任意檔案 3 可以使用 逗號分隔 二 controller...
使用spring框架
使用spring框架 spring框架目前為市面上較為流行的一款全能型框架,它依賴ioc 控制反轉 和aop 面向切面程式設計思想 來進行實現 準備步驟 一 最少jar包 spring beans jar spring context jar spring core jar spring expre...