锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲成aⅴ人片在线影院八,亚洲AV成人片色在线观看,久久精品国产亚洲av瑜伽http://www.tkk7.com/Aether/鍋氫竴涓揩涔愮殑灝忕爜鍐滐紝(*^__^*) 鍢誨樆鈥︹?/description>zh-cnSat, 10 May 2025 00:04:08 GMTSat, 10 May 2025 00:04:08 GMT60鎼緩欏圭洰鐨勯厤緗?-絎旇璁板綍http://www.tkk7.com/Aether/archive/2012/06/29/381852.html騫葷牬騫葷牬Fri, 29 Jun 2012 11:28:00 GMThttp://www.tkk7.com/Aether/archive/2012/06/29/381852.htmlhttp://www.tkk7.com/Aether/comments/381852.htmlhttp://www.tkk7.com/Aether/archive/2012/06/29/381852.html#Feedback0http://www.tkk7.com/Aether/comments/commentRss/381852.htmlhttp://www.tkk7.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.tkk7.com/Aether/archive/2012/06/29/381851.html騫葷牬騫葷牬Fri, 29 Jun 2012 11:08:00 GMThttp://www.tkk7.com/Aether/archive/2012/06/29/381851.htmlhttp://www.tkk7.com/Aether/comments/381851.htmlhttp://www.tkk7.com/Aether/archive/2012/06/29/381851.html#Feedback0http://www.tkk7.com/Aether/comments/commentRss/381851.htmlhttp://www.tkk7.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.tkk7.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.tkk7.com/Aether/archive/2012/02/13/369829.html</guid><wfw:comment>http://www.tkk7.com/Aether/comments/369829.html</wfw:comment><comments>http://www.tkk7.com/Aether/archive/2012/02/13/369829.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/Aether/comments/commentRss/369829.html</wfw:commentRss><trackback:ping>http://www.tkk7.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.tkk7.com/Aether/aggbug/369829.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/Aether/" target="_blank">騫葷牬</a> 2012-02-13 09:23 <a href="http://www.tkk7.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.tkk7.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.tkk7.com/Aether/archive/2012/02/08/369618.html</guid><wfw:comment>http://www.tkk7.com/Aether/comments/369618.html</wfw:comment><comments>http://www.tkk7.com/Aether/archive/2012/02/08/369618.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.tkk7.com/Aether/comments/commentRss/369618.html</wfw:commentRss><trackback:ping>http://www.tkk7.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.tkk7.com/Aether/aggbug/369618.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/Aether/" target="_blank">騫葷牬</a> 2012-02-08 18:51 <a href="http://www.tkk7.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"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.tkk7.com/" title="亚洲av成人片在线观看">亚洲av成人片在线观看</a> <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://yytengsheng.com" target="_blank">亚洲美女中文字幕</a>| <a href="http://njjngs.com" target="_blank">亚洲人成网亚洲欧洲无码久久</a>| <a href="http://zndijgch.com" target="_blank">久久精品国产亚洲AV香蕉</a>| <a href="http://xa69.com" target="_blank">久久毛片免费看一区二区三区</a>| <a href="http://class3g.com" target="_blank">免费又黄又爽又猛的毛片 </a>| <a href="http://www-887234.com" target="_blank">亚洲日韩在线观看</a>| <a href="http://cebeke.com" target="_blank">视频免费1区二区三区</a>| <a href="http://nb46.com" target="_blank">亚洲日韩人妻第一页</a>| <a href="http://0595laser.com" target="_blank">中文字幕在线视频免费</a>| <a href="http://hnshlt.com" target="_blank">亚洲AV无码精品无码麻豆</a>| <a href="http://fshomppa.com" target="_blank">久久国产乱子伦精品免费看</a>| <a href="http://ettedia.com" target="_blank">久久久久亚洲AV无码永不</a>| <a href="http://caicpa.com" target="_blank">日韩欧美一区二区三区免费观看</a>| <a href="http://jcmy5188.com" target="_blank">亚洲乱码一二三四五六区</a>| <a href="http://fense1.com" target="_blank">在线免费观看一级毛片</a>| <a href="http://qnyjny.com" target="_blank">猫咪免费人成在线网站</a>| <a href="http://lanchenews.com" target="_blank">国产精品亚洲аv无码播放</a>| <a href="http://www-66409b.com" target="_blank">a毛片在线看片免费</a>| <a href="http://51a88.com" target="_blank">亚洲精品国产成人</a>| <a href="http://18jko.com" target="_blank">日韩免费观看一级毛片看看</a>| <a href="http://szwangzhongwang.com" target="_blank">免费VA在线观看无码</a>| <a href="http://bobostrong31.com" target="_blank">亚洲精品国产品国语在线</a>| <a href="http://gg596gg.com" target="_blank">最近新韩国日本免费观看</a>| <a href="http://6777s.com" target="_blank">在线观看亚洲AV日韩AV</a>| <a href="http://sewo66.com" target="_blank">亚洲精品成人区在线观看</a>| <a href="http://58f8.com" target="_blank">久久久久久影院久久久久免费精品国产小说 </a>| <a href="http://gjwlgzs.com" target="_blank">国产成人精品亚洲2020</a>| <a href="http://jsjumei.com" target="_blank">四虎影视在线永久免费看黄</a>| <a href="http://cdkunyu.com" target="_blank">三级黄色免费观看</a>| <a href="http://9hao66.com" target="_blank">激情五月亚洲色图</a>| <a href="http://jdvgo.com" target="_blank">亚洲中文字幕久久精品无码APP</a>| <a href="http://glhrsydc.com" target="_blank">三年片在线观看免费观看大全一</a>| <a href="http://zhnetbar.com" target="_blank">国产精品亚洲精品</a>| <a href="http://www96pg.com" target="_blank">国产成人综合亚洲亚洲国产第一页</a>| <a href="http://831055.com" target="_blank">久久成人免费电影</a>| <a href="http://bx85.com" target="_blank">在线观看亚洲电影</a>| <a href="http://maomi90.com" target="_blank">久久精品7亚洲午夜a</a>| <a href="http://48eh.com" target="_blank">国产极品粉嫩泬免费观看</a>| <a href="http://badabg.com" target="_blank">国产永久免费高清在线</a>| <a href="http://438266.com" target="_blank">亚洲熟妇少妇任你躁在线观看</a>| <a href="http://gzltchem.com" 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>