-
6666查看全部
-
controller---service-----dao----session
查看全部 -
1查看全部
-
springMVC配置? ? http請求映射
查看全部 -
類及數(shù)據(jù)庫設(shè)計
查看全部 -
項目所需工具
查看全部 -
垃圾的一b,講話不說終點,說的都是TM廢話查看全部
-
將事物放到service層查看全部
-
各個注解的含義
?
查看全部 -
ioc和aop是啥呢查看全部
-
spring mvc配置文件配置些啥?
包掃描器,注意在使用include和exclude的區(qū)別(mvc框架只關(guān)心controller相關(guān)的注解,spring框架過濾掉所有controller,他們所存放的ioc容器不同,避免找不到對應(yīng)的bean)
靜態(tài)資源映射 mvc:resource
攔截器
視圖解析器,映射適配器
消息轉(zhuǎn)換器(json轉(zhuǎn)換)
模板引擎FreeMarker及其配置(可選)
查看全部 -
spring配置文件配置些啥?
數(shù)據(jù)源
hibernate會話工廠
事務(wù)管理
查看全部 -
<aop:aspectj-autoproxy/>自動生成aop代理
查看全部 -
web.xml配置些啥?
spring配置文件的位置
spring context加載監(jiān)聽器(?)
mvc核心過濾器
字符編碼過濾器
靜態(tài)資源過濾
查看全部 -
spirng事務(wù)配置
查看全部 -
spring整合hibernate配置
查看全部 -
資源及數(shù)據(jù)源配置
查看全部 -
mvc視圖配置
查看全部 -
http請求映射到控制器代碼
查看全部 -
包掃描與資源管理
查看全部 -
構(gòu)建dao層的crud ps
public?Person?getPersonById(String?id){ ????return?(Person)?this.getSession().createQuery("from?Person?where?id?=??") ????.setParamter(0,id).uniqueResult(); }
public?void?updatePerson(Person?person){ ????return?this.getSession().update(person); }
public?void?deletePersonById(String?id){ ????this.getSession().createQuery("delete?Person?where?id?=??").setParameter(0,id) ????.executeUpdate(); }
查看全部 -
構(gòu)建dao層的crud
查看全部
舉報