SSH框架專案總結
Struts1
Action需要在檔案中配置路徑和path,在forward中加入對映的頁面.
Action類要繼承StrutsAction 在action 中加入 parameter="method" 路徑加入對應的執行方法
<action name="memberForm" path="/memberAction"
type="cn.com.duc.ds.member.struts.action.MemberAction"
parameter="method" scope="request">
<forward name="member_edit"
path="/member_edit.jsp" />
<forward name="member_shenpi"
path="/member_shenpi.jsp" />
</action>
地址:localhost:8080/web/memberAction.do?method=execute1
如果需求中不需要路徑中帶有method方法
Action繼承StrutsAction 預設執行execute()
Spring
配置檔案讀取
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:db.properties</value>
<value>classpath:common.properties</value>
</list>
</property>
</bean>
方便使用,已經裝配到類中屬性
<property name="driverClass">
<value>${jdbc.driver}</value>
</property>
<property name="jdbcUrl">
<value>${jdbc.url}</value>
</property>
<property name="user">
<value>${jdbc.username}</value>
</property>
<property name="password">
<value>${jdbc.password}</value>
</property>
Spring bean 中注入
<bean id="ShareLoginService"
class="cn.com.ShareLoginServiceImpl"
autowire="byName">
<property name="verify" value="${TextSecretkey}"/>
</bean>
相關文章
- Mybatis Plus 框架專案落地實踐總結MyBatis框架
- 什麼是框架?(最佳實踐、專案總結)框架
- 【Vue專案總結】後臺管理專案總結Vue
- BBS專案專案總結
- 關於 SSH 框架面試知識點的總結框架面試
- 番茄專案總結
- Nuxt專案總結UX
- 今日專案總結
- Laravel 專案總結Laravel
- 自用ssh命令總結
- SSH key使用總結
- ssh的小總結
- 總結一下基於 Lumen 框架的專案架構框架架構
- Vue + Canvas專案總結VueCanvas
- Vue專案常用總結Vue
- 爬蟲專案總結爬蟲
- 小程式專案-總結
- ReactNative 專案工作總結React
- Headline 專案總結中
- 小程式專案總結
- SSH後門分析總結
- 使用Maven整合SSH總結Maven
- React-Native專案總結React
- 幾次外包專案總結
- vue個人小專案總結Vue
- OpenGL ES專案總結一
- vue專案問題總結Vue
- MySQL專案實戰總結MySql
- 團隊專案總結反思
- 日常專案經驗總結
- 專案review步驟還有專案交接總結View
- 實習專案開發總結
- 《軟體專案經驗總結》
- 伺服器部署專案總結伺服器
- 專案管理PMP過關總結專案管理
- 一個React專案總結(toB)React
- vuejs專案效能優化總結VueJS優化
- Spring Boot+Mybatis專案總結Spring BootMyBatis
- nginx部署vue專案方法總結NginxVue