這篇文章主要講解了“Eclipse下spring配置的應(yīng)用方法”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Eclipse下spring配置的應(yīng)用方法”吧!
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的大豐網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
一.關(guān)于Spring的環(huán)境配置問題
需要的包(除了基本java web開發(fā)環(huán)境(如jdk,tomcat )之外的):spring-framework,jakarta-struts(后面有關(guān)于spring與struts結(jié)合的部分要用到).
二.關(guān)于Spring配置文件
我個(gè)人感覺,學(xué)習(xí)開發(fā)框架時(shí),在明白了它的設(shè)計(jì)思想之后,配置文件設(shè)置是一個(gè)關(guān)鍵,等成功搭建起這個(gè)框架之后,在里面編程相信都難不到大家的
在建立單純的spring項(xiàng)目時(shí),web.xml文件如下:
<?xml version="1.0" encoding="UTF-8"?>
>
<web-app>
<servlet>
<servlet-name>springservlet-name>
<servlet-class> org.springframework.web.servlet.DispatcherServlet
servlet-class>
<init-param>
<param-name>contextConfigLocationparam-name>
<param-value>/WEB-INF/application.xmlparam-value>
init-param>
<load-on-startup>1load-on-startup>
servlet>
<servlet-mapping>
<servlet-name>springservlet-name>
<url-pattern>*.dourl-pattern>
servlet-mapping>
web-app>
這時(shí)候spring配置文件(這里假定為spring-servlet.xml)如下:
<?xml version="1.0" encoding="UTF-8"?>
>
<beans>
<bean id="LoginAction" class="com.ln.spring.LoginAction">
<property name="msg">
<value>Hello Worldvalue>
property>
<property name="data">
<ref bean="data1" />
property>
bean>
<bean id="data1" class="com.ln.spring.MyAction">
<property name="message">
<value>liangvalue>
property>
bean>
<bean id="urlMapping" class="org.springframework. web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/login.do">LoginActionprop>
props>
property>
bean>
beans>
而在建立spring+struts項(xiàng)目時(shí),web.xml文件按照struts項(xiàng)目的規(guī)格建立,在此不在多說,而在此時(shí)struts-config.xml如下:
<?xml version="1.0" encoding="UTF-8"?>
Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<form-beans>
<form-bean name="loginForm"
type="com.ln.struts.LoginForm" />
form-beans>
<action-mappings>
<action path="/login"
type="org.springframework.web.struts.
DelegatingActionProxy"
name="loginForm">
<forward name="success"
path="/main.jsp" />
<forward name="failure"
path="/loginfail.jsp" />
action>
action-mappings>
<plug-in
className="org.springframework.web.
struts.ContextLoaderPlugIn">
<set-property property="
contextConfigLocation"
value="/WEB-INF/
spring-servlet.xml" />
plug-in>
struts-config>
在這個(gè)配置文件中,由于使用spring來管理struts的action所以有兩個(gè)地方要注意:
1.Action的”type”指向spring里定義的用來處理action的類,而不是自己寫的action.
2.增加了一個(gè)”
此時(shí)spring-servlet.xml配置文件如下:
<?xml version="1.0" encoding="UTF-8"?>
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean name="/login" class="com.ln.struts.LoginAction"
singleton="false">
此處的bean與struts-config.xml中的action相對(duì)應(yīng),name與struts- config.xml中action的path一致
<property name="msg">
<value>Hello Worldvalue>
property>
bean>
beans>
三.應(yīng)該注意的小問題
1.要把開發(fā)中所需要用到的包,tld文件相應(yīng)地放在WEB-INF里的lib,tlds文件夾中。
2.在需要使用到struts,spring,jstl等的標(biāo)簽時(shí),一定要在web.xml中
用下面
<taglib>
<taglib-uri>http://java.sun.com/jstl/coretaglib-uri>
<taglib-location>/WEB-INF/c.tldtaglib-location>
taglib>
這樣的標(biāo)簽先進(jìn)行聲明。
感謝各位的閱讀,以上就是“Eclipse下spring配置的應(yīng)用方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)Eclipse下spring配置的應(yīng)用方法這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
名稱欄目:Eclipse下spring配置的應(yīng)用方法
當(dāng)前地址:http://jinyejixie.com/article44/jdoshe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、網(wǎng)頁設(shè)計(jì)公司、品牌網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站改版、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)