锘??xml version="1.0" encoding="utf-8" standalone="yes"?>免费国产在线视频,www欧美xxxx,蜜臀av一级做a爰片久久http://www.aygfsteel.com/Aether/鍋氫竴涓揩涔愮殑灝忕爜鍐滐紝(*^__^*) 鍢誨樆鈥︹?/description>zh-cnMon, 30 Jun 2025 01:09:54 GMTMon, 30 Jun 2025 01:09:54 GMT60鎼緩欏圭洰鐨勯厤緗?-絎旇璁板綍http://www.aygfsteel.com/Aether/archive/2012/06/29/381852.html騫葷牬騫葷牬Fri, 29 Jun 2012 11:28:00 GMThttp://www.aygfsteel.com/Aether/archive/2012/06/29/381852.htmlhttp://www.aygfsteel.com/Aether/comments/381852.htmlhttp://www.aygfsteel.com/Aether/archive/2012/06/29/381852.html#Feedback0http://www.aygfsteel.com/Aether/comments/commentRss/381852.htmlhttp://www.aygfsteel.com/Aether/services/trackbacks/381852.html鍓嶅彴浣跨敤鐨勬槸jquery
web.xml 
 2   <context-param>
 3     <param-name>contextConfigLocation</param-name>
 4         <param-value>
 5           classpath*:applicationContext-common.xml, 
 6           classpath*:applicationContext-dao.xml,
 7           classpath*:applicationContext-service.xml,
 8           classpath*:applicationContext-action.xml
 9         </param-value>
10   </context-param>
11   
12   <welcome-file-list>
13     <welcome-file>login.jsp</welcome-file>
14   </welcome-file-list>
15   <filter>
16         <filter-name>struts2</filter-name>
17         <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
18   </filter>
19   
20     <filter-mapping>
21         <filter-name>struts2</filter-name>
22         <url-pattern>/*</url-pattern>
23     </filter-mapping>
24         <listener>
25         <listener-class>
26             org.springframework.web.context.ContextLoaderListener 
27         </listener-class>
28     </listener>
29     <session-config> 
30         <session-timeout>20</session-timeout> 
31     </session-config>
32     <filter>
33        <filter-name>struts-cleanup</filter-name>
34        <filter-class>org.apache.struts2.dispatcher.ActionContextCleanUp</filter-class>
35     </filter>
36     <filter-mapping>
37        <filter-name>struts-cleanup</filter-name>
38        <url-pattern>/*</url-pattern>
39     </filter-mapping>

struts.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd"
>

<struts>
    <package name="default" namespace="/com" extends="struts-default">
       
        <action name="login" class="loginAction" method="login">
            <result name="success">/main.jsp</result>
            <result name="error">/loginError.jsp</result>
            <result name="fail">/error.jsp</result>
        </action>
        <action name="logoff" class="logoffAction" method="logoff">
            <result name="success" type="redirect">/login.jsp</result> 
        </action>
    </package>
</struts>

applicationContext-xxx.xml涓嬮潰榪欏洓涓叾瀹炲彲浠ユ斁鍦ㄤ竴涓厤緗。閲岋紝鍖哄垎涓嬫潵鍙槸涓轟簡渚夸簬鏌ユ壘娓呮櫚鐐?/strong>

applicationContext-action.xml
1 <bean id="loginAction" class="com.ivo.action.LoginAction" scope="prototype">
2         <property name="checkAuthorityService" ref="checkAuthorityService" />
3     </bean>

applicationContext-service.xml
1  <bean id="checkAuthorityService" class="com.ivo.service.impl.CheckAuthorityService">
2         <property name="uasUserDao" ref="uasUserDao" />
3     </bean>    

applicationContext-dao.xml
1 <bean id="uasUserDao" class="com.ivo.dao.impl.UasUserDao">
2         <property name="sqlMapClient" ref="sqlMapClient" />
3     </bean>

applicationCtontext-common.xml
 1 <bean id="mySqlDataSource"
 2         class="org.springframework.jdbc.datasource.DriverManagerDataSource">
 3         <property name="driverClassName">
 4             <value>com.mysql.jdbc.Driver</value>
 5         </property>
 6         <property name="url">
 7             <value>
 8                 jdbc:mysql://10.20.53.106:3306/qrademo
 9             </value>
10         </property>
11         <property name="username">
12             <value>root</value>
13         </property>
14         <property name="password">
15             <value>Ivo123</value>
16         </property>
17     </bean>
18 <bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
19         <property name="configLocation">
20             <value>classpath:ibatis-config.xml</value>
21         </property>
22         <property name="dataSource">
23             <ref local="mySqlDataSource" />
24         </property>
25     </bean>

ibatis-config.xml
1 <sqlMapConfig>
2     <settings cacheModelsEnabled="true" enhancementEnabled="true" lazyLoadingEnabled="true"
3         maxRequests="300" maxSessions="200" maxTransactions="100" useStatementNamespaces="true" />
4
   <sqlMap resource="com/ivo/pojo/xml/UasUser.xml" />
5 </sqlMapConfig>

宸笉澶氬緩榪欎簺錛屽綋鐒惰繕鏈夎澶歫ar鍖呴渶瑕佸





騫葷牬 2012-06-29 19:28 鍙戣〃璇勮
]]>
struts2 涓嬭澆鏂囦歡http://www.aygfsteel.com/Aether/archive/2012/06/29/381851.html騫葷牬騫葷牬Fri, 29 Jun 2012 11:08:00 GMThttp://www.aygfsteel.com/Aether/archive/2012/06/29/381851.htmlhttp://www.aygfsteel.com/Aether/comments/381851.htmlhttp://www.aygfsteel.com/Aether/archive/2012/06/29/381851.html#Feedback0http://www.aygfsteel.com/Aether/comments/commentRss/381851.htmlhttp://www.aygfsteel.com/Aether/services/trackbacks/381851.html鐒跺悗鐧懼害鍒扮綉涓婃湁浜轟嬌鐢╯truts2涓嬭澆鏂囦歡瑙e喅浜嗚繖涓棶棰橈紝鐒跺悗灝卞熺敤浜嗙湅鐪嬨?br />jquery浠g爜
 1 function rangFun(value, options, rData){
 2           return '<a href=entCom/download.action?filename='+rData['range_id']+'>'+rData['range_id']+'</a>';
 3      }
 4  $("#externalListGrd").jqGrid({
 5          datatype    : "json",
 6          mtype       : "POST",
 7          width       : 720 ,
 8          height      : 420,
 9          rownumWidth : true,
10          shrinkToFit : false,
11          scroll      : true,
12         ondblClickRow:regectExtFun,
13          colNames    : ['鍏佽鑼冨洿'],
14          colModel:[
15             { name : 'range_id',   index : 'range_id',   width : 50, align: "left",sortable : "true",formatter:rangFun}]
16    })

struts.xml閲岀殑閰嶇疆
1 <action name="download" class="com.ivo.action.DownloadAction">
2            <result name="success" type="stream">
3               <param name="contentType">text/html,application/vnd.ms-powerpoint,application/vnd.ms-word,application/vnd.ms-excel,text/plain</param> //鏂囦歡鎵撳紑鏂瑰紡
4               <param name="inputName">inputStream</param>
5               <param name="contentDisposition">attachment;filename="${filename}"</param>
6               <param name="bufferSize">2048</param>
7            </result>
8         </action>

鍚庡彴浠g爜
 1 package com.ivo.action;
 2 
 3 import java.io.FileInputStream;
 4 import java.io.InputStream;
 5 import java.io.UnsupportedEncodingException;
 6 
 7 import com.opensymphony.xwork2.ActionSupport;
 8 
 9 public class DownloadAction extends ActionSupport {
10    private String filename;
11    public InputStream getInputStream() throws Exception{
12        String downloadFileName=filename;
13         try {
14             // downloadFileName = new String(downloadFileName.getBytes(),"UTF-8");榪欐牱甯︿腑鏂囧悕鐨勬枃浠朵緷鏃т細鎶ラ敊錛屾兂浜嗗崐澶╂壘鍓嶈緢甯繖鐪嬶紝鍚庢潵鏀規垚涓嬮潰鐨勬墠OK銆傚師鍥犳槸浠庡墠鍙頒紶榪囨潵鐨勬椂鍊欏瓧絎﹀凡緇忎貢鐮侊紝鎵浠ラ渶瑕侀噸鏂拌В鏋愶紝鍐嶈漿鎹?/span>
15             downloadFileName = new String(downloadFileName.getBytes("ISO-8859-1"),"UTF-8");
16 
17         } catch(UnsupportedEncodingException e) {
18 
19             e.printStackTrace();
20 
21         }
22        String dir = "D:\\qra\\fileUpload\\"+downloadFileName;
23        return new FileInputStream(dir);
24    }
25 
26     public String getFilename() {
27         return filename;
28     }
29 
30     public void setFilename(String filename) {
31         this.filename = filename;
32     }
33    
34 }





騫葷牬 2012-06-29 19:08 鍙戣〃璇勮
]]>
java.lang.OutOfMemoryError: Java heap space 鐨勮В鍐?/title><link>http://www.aygfsteel.com/Aether/archive/2012/02/13/369829.html</link><dc:creator>騫葷牬</dc:creator><author>騫葷牬</author><pubDate>Mon, 13 Feb 2012 01:23:00 GMT</pubDate><guid>http://www.aygfsteel.com/Aether/archive/2012/02/13/369829.html</guid><wfw:comment>http://www.aygfsteel.com/Aether/comments/369829.html</wfw:comment><comments>http://www.aygfsteel.com/Aether/archive/2012/02/13/369829.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/Aether/comments/commentRss/369829.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/Aether/services/trackbacks/369829.html</trackback:ping><description><![CDATA[鏈榪戦亣鍒拌繖縐嶉棶棰橈紝鐩稿綋鐑︽伡銆傝繕濂界綉涓婃湁涓В鍐蟲柟娉曚笉閿欙紝copy榪囨潵鑷繁淇濈暀鐫銆?br />涓嶈繃鎴戞槸鍦╮em Guess CATALINA_HOME if not defined鍚庨潰娣誨姞鐨?span style="font-family: Simsun; line-height: normal; color: #000000; font-size: 12pt; ">set JAVA_OPTS=-Xms64m -Xmx256m -XX:PermSize=128M -XX:MaxNewSize=256m -XX:MaxPermSize=256m<br />閾炬帴鍦板潃錛?/span><a >http://blog.sina.com.cn/s/blog_3caf06b20100czvo.html </a><img src ="http://www.aygfsteel.com/Aether/aggbug/369829.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/Aether/" target="_blank">騫葷牬</a> 2012-02-13 09:23 <a href="http://www.aygfsteel.com/Aether/archive/2012/02/13/369829.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>jquery 鏃ユ湡錛坖query UI緗戠珯錛?/title><link>http://www.aygfsteel.com/Aether/archive/2012/02/08/369618.html</link><dc:creator>騫葷牬</dc:creator><author>騫葷牬</author><pubDate>Wed, 08 Feb 2012 10:51:00 GMT</pubDate><guid>http://www.aygfsteel.com/Aether/archive/2012/02/08/369618.html</guid><wfw:comment>http://www.aygfsteel.com/Aether/comments/369618.html</wfw:comment><comments>http://www.aygfsteel.com/Aether/archive/2012/02/08/369618.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/Aether/comments/commentRss/369618.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/Aether/services/trackbacks/369618.html</trackback:ping><description><![CDATA[<div><div>$(function() {</div><div> var dates = $( "#from, #to" ).datepicker({</div><div> defaultDate: "+1w",/*褰撳墠鏃墮棿鍔犱竴鍛?/</div><div> dateFormat: 'yy-mm-dd',//鏃ユ湡鏍煎紡</div><div> changeMonth: true,</div><div> changeYear:true, //鍙夋嫨騫翠喚</div><div> numberOfMonths: 1,//璁劇疆涓嬈℃樉紺哄嚑涓湀</div><div> onSelect: function( selectedDate ) {</div><div> var option = this.id == "from" ? "minDate" : "maxDate",</div><div> <span style="background-color: #ff0000; ">instance = $( this ).data( "datepicker" ),</span></div><div><span style="background-color: #ff0000; "> date = $.datepicker.parseDate(</span></div><div><span style="background-color: #ff0000; "> i</span><span style="background-color: #ff0000; ">nstance.settings.dateFormat ||</span></div><div> <span style="background-color: #ff0000; ">$.datepicker._defaults.dateFormat,</span></div><div> <span style="background-color: #ff0000; ">selectedDate, instance.settings );</span><span style="background-color: #ffffff; ">     //榪樻病鎼炴噦錛?/span></div><div> dates.not( this ).datepicker( "option", option, date );</div><div> }</div><div> });</div><div><span style="white-space: pre; "> </span>});<br /><br /></div></div><img src ="http://www.aygfsteel.com/Aether/aggbug/369618.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/Aether/" target="_blank">騫葷牬</a> 2012-02-08 18:51 <a href="http://www.aygfsteel.com/Aether/archive/2012/02/08/369618.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> 主站蜘蛛池模板: <a href="http://" target="_blank">碌曲县</a>| <a href="http://" target="_blank">漾濞</a>| <a href="http://" target="_blank">屏南县</a>| <a href="http://" target="_blank">察隅县</a>| <a href="http://" target="_blank">青冈县</a>| <a href="http://" target="_blank">临清市</a>| <a href="http://" target="_blank">乌鲁木齐县</a>| <a href="http://" target="_blank">贡嘎县</a>| <a href="http://" target="_blank">遂昌县</a>| <a href="http://" target="_blank">安图县</a>| <a href="http://" target="_blank">资溪县</a>| <a href="http://" target="_blank">凭祥市</a>| <a href="http://" target="_blank">肃南</a>| <a href="http://" target="_blank">玉龙</a>| <a href="http://" target="_blank">崇仁县</a>| <a href="http://" target="_blank">新民市</a>| <a href="http://" target="_blank">正蓝旗</a>| <a href="http://" target="_blank">莱州市</a>| <a href="http://" target="_blank">白玉县</a>| <a href="http://" target="_blank">蕲春县</a>| <a href="http://" target="_blank">常德市</a>| <a href="http://" target="_blank">霍山县</a>| <a href="http://" target="_blank">武冈市</a>| <a href="http://" target="_blank">封丘县</a>| <a href="http://" target="_blank">海伦市</a>| <a href="http://" target="_blank">天水市</a>| <a href="http://" target="_blank">阆中市</a>| <a href="http://" target="_blank">彭泽县</a>| <a href="http://" target="_blank">同心县</a>| <a href="http://" target="_blank">瑞昌市</a>| <a href="http://" target="_blank">南江县</a>| <a href="http://" target="_blank">玉环县</a>| <a href="http://" target="_blank">日喀则市</a>| <a href="http://" target="_blank">磐石市</a>| <a href="http://" target="_blank">犍为县</a>| <a href="http://" target="_blank">屏边</a>| <a href="http://" target="_blank">大名县</a>| <a href="http://" target="_blank">绩溪县</a>| <a href="http://" target="_blank">合川市</a>| <a href="http://" target="_blank">呼玛县</a>| <a href="http://" target="_blank">宿迁市</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>