
XML
文章平均质量分 64
lyon-yao
程序袁
展开
-
struts2.1.8 struts.xml配置各种转发
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> /index.jsp /WEB-INF/page/hello.jsp /原创 2013-05-17 17:00:56 · 363 阅读 · 0 评论 -
anychar xml配置说明
plot_type="CategorizedBySeriesVertical" 按series显示图形 plot_type="CategorizedVertical" 按point显示图形 plot_type="Pie" 饼图 --> enable_3d_mode 3D效果 z_aspect 3D效果的深度 def原创 2013-05-17 17:01:44 · 437 阅读 · 0 评论 -
struts2.1.8 web.xml简单配置
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> struts2 org.apache.struts2.disp原创 2013-05-17 17:00:54 · 324 阅读 · 0 评论 -
flex 部分样式设置
xmlns:component="component.*" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FFFFFF, #FFFFFF]"> import mx.events.ToolTipEvent; import component.BubbleToolTip;原创 2013-05-17 17:02:36 · 506 阅读 · 0 评论 -
flex xml
xmlns:mx="http://www.adobe.com/2006/mxml" viewSourceURL="src/XMLQuery/index.html" width="450" height="290" initialize="initializeHandler();" > // Mo原创 2013-05-17 17:02:24 · 384 阅读 · 0 评论 -
js获取xml文件
js获取xml文件var xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async="false";//设置为同步加载 xmlDoc.load("xml/aqhb2.xml");return xmlDoc.getElementsByTagName(Togname).item(0).text;原创 2013-05-17 17:02:11 · 356 阅读 · 0 评论 -
flex flash 显示效果
1.使用自带效果在Flex里面不像在Flash里面随意制作动画了,Flex更趋向于应用程序,而不是动画制作了,所以没有了时间轴的概念。在Flex中使用动画效果,可以用Flex自带的Effect,或者自已定制Effect,因为很多人都想借Flash里面的一样操作Flex,比如在Flash里面做一个动态按钮很容易,当鼠标移动到上面时,会有很多发光的点跑出来(荧火虫效果),这种效果在Flash十分容原创 2013-05-17 17:02:09 · 454 阅读 · 0 评论 -
jquery--xml
success:function(xml){ var ul=document.createElement("ul"); //创建一个ul容器,来盛放下面循环的LI元素 $(xml).find("item").each(function(i){ //寻找xml里面的item的节点,并遍历这些item节点 var id=$(this).children("id").text(); //得到每个i原创 2013-05-17 17:02:05 · 466 阅读 · 0 评论 -
关于struts2的配置问题说明
在struts2的配置中我们可以这样配置: struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter struts2 /* 也可以这样配置: action org.apache.struts原创 2013-05-17 17:01:40 · 351 阅读 · 0 评论 -
spring多配置文件
contextConfigLocationclasspath*:conf/spring/applicationContext_core*.xml,classpath*:conf/spring/applicationContext_dict*.xml,classpath*:conf/spring/applicationContext_hibernate.xml,classpath*:con原创 2013-05-17 17:01:38 · 349 阅读 · 0 评论 -
struts2.1.8 加载常量的顺序
顺序如下:struts-default.xml------>struts-plugin.xml------->struts.xml-------------->struts.properties------->web.xml原创 2013-05-17 17:01:00 · 316 阅读 · 0 评论 -
response.setcontenttype()
response.setContentType() ;* = application/octet-stream .001 = application/x-001 .301 = application/x-301 .323 = text/h323 .906 = application/x-906 .907 = drawing/907 .a11 = application/x-a11原创 2013-05-17 17:02:22 · 434 阅读 · 0 评论 -
flex请求服务
flex页面: 其中:_url.action为用户定义的请求,该页面向struts2发送两个参数:userName,pswWord Xml代码 {userName.text}原创 2013-05-17 17:01:46 · 381 阅读 · 0 评论 -
struts2.1+spring2.5+hibernate3.3整合之第一步(spring2.5+hibernate3.3)
需要的.jar文件:spring框架下的包:hibernate框架下的包:配置文件beans.xml: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springfr原创 2013-05-17 17:01:09 · 383 阅读 · 0 评论 -
flash as3 MouseOver and ROLL_OVER
rollOver与mouseOver同样在鼠标移到目标上时触发事件,细微区别在于,mouseOver的bubbles等于true,而rollOver的bubbles是false. 所以当监听MouseEvent.ROLL_OVER事件后,鼠标移动到panel的几个按钮时,程序仍然认为鼠标悬停在panel上方。假设我们监听MouseEvent.MOUSE_OVER, 随着鼠标移到panel的按钮上,原创 2013-05-17 17:02:50 · 401 阅读 · 0 评论