摘要: 模块代码[cpp]view plaincopy<?xmlversion="1.0"encoding="utf-8"?><s:Modulexmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:s="library://ns.adobe.com/flex/spark"xmlns:mx="library://ns.adobe.com/flex/mx"width="400"height="300">&l 阅读全文
posted @ 2012-02-18 13:39 张良 阅读(609) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.nomanland.net/2010/05/21/flex-series-guide-integration2/Spring BlazeDS Integration 是什么?Spring BlazeDS Integration 是SpringSource的开源项目,用于整合 Spring 与 BlazeDS。为什么需要 Spring BlazeDS Integration?正如“Flex4 系列教程之六”介绍的:不使用 Spring BlazeDS Integration 同样可以整合 Spring 与 BlazeDS。但这种整合方式不自然,需要额外维护一个 Bla 阅读全文
posted @ 2012-02-18 13:37 张良 阅读(719) 评论(0) 推荐(0) 编辑
摘要: 来源于http://www.cnblogs.com/tjsquall/archive/2008/01/31/1059882.html//文件包importjava.io.ByteArrayOutputStream;importjava.io.File;importjava.io.FileWriter;//工具包importjava.util.Iterator;importjava.util.List;//dom4j包importorg.dom4j.Attribute;importorg.dom4j.Document;importorg.dom4j.DocumentHelper;importor 阅读全文
posted @ 2012-02-18 13:36 张良 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 一、 实体 Bean每个持久化POJO类都是一个实体Bean, 通过在类的定义中使用@Entity注解来进行声明。声明实体Bean@Entitypublic class Flight implements Serializable { Long id; @Id public Long getId() { return id; } public void setId(Long id) { this.id = id; }}@Entity注解将一个类声明为实体 Bean, @Id 注解声明了该实体Bean的标识属性。Hibernate 可以对类的属性或者方法进行注解。属性对应field类别,方法的 阅读全文
posted @ 2012-02-18 13:35 张良 阅读(790) 评论(0) 推荐(0) 编辑
摘要: 工程包下载地址 :点此下载1. 在web.xml里面加入 spring支持。[xhtml]view plaincopy<?xmlversion="1.0"encoding="UTF-8"?><web-appxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns="http://java.sun.com/xml/ns/javaee"xmlns:web="http://java.sun.com/xml/ns/javaee/web- 阅读全文
posted @ 2012-02-18 13:33 张良 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 实现目标:java做后台service,每隔300毫秒,生成一个uuid,以 testJob做为订阅关键词,发布给所有订阅此关键词的flex客户端。配置过程和源码:1.修改blazeds自动生成的WEB-INF/flex/services-config.xml文件。由于原来没有polling-amf的定义,所以需要加入。代码如下:[xhtml:nogutter]view plaincopy<?xmlversion="1.0"encoding="UTF-8"?><services-config><services>< 阅读全文
posted @ 2012-02-18 13:31 张良 阅读(1715) 评论(0) 推荐(0) 编辑
摘要: 以上内容基于Spring 3.0.5 版本运行,参考文档为spring-framework-reference-3.0.5.pdf在spring3 中的task 命名空间。可以部分去取代 quartz,并且支持注解方式。但是如果使用更加复杂的任务调度。还是建议是使用quartz。以下就使用 task 和 quartz来进行任务调度的方法进行距离。使用 注解来 来调度任务编写一个任务实例。[java]view plaincopy/*************************************************************************TestJob.jav 阅读全文
posted @ 2012-02-18 13:30 张良 阅读(1010) 评论(1) 推荐(0) 编辑
摘要: 参考文档: http://wenku.baidu.com/view/4ec7e324ccbff121dd368364.html在spring security3中使用自己定义的数据结构来实现权限设置。数据库用户表角色表action表,即资源表角色-用户关联表actiion-角色关联表配置过程web.xml中加入过滤器[xhtml:nogutter]view plaincopy<!--配置spiringsecurity--><filter><filter-name>springSecurityFilterChain</filter-name>< 阅读全文
posted @ 2012-02-18 13:28 张良 阅读(2762) 评论(0) 推荐(0) 编辑
摘要: 在(三)里面。我们引入了<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>这个bean 来处理@Autowired注解。其实在spring 里面还有其他三个BeanPostProcessor 。总共有四个,分别是:AutowiredAnnotationBeanPostProcessorCommonAnnotationBeanPostProcessorPersistenceAnnotationBeanPostProcess 阅读全文
posted @ 2012-02-18 13:23 张良 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 通过上面一步骤。我们简化了hibernate中扰人的 xxxxx.hbm.xml文件。那么是否可以再进行简化呢?那么,我们在这一步骤的目的,就是把整个 hibernate.cfg.xml都给简化了。依然是利用注解注入的方式。通过jpa 我们可以把 hibernate.cfg.xml中那些 mapping classes再次简化与无形。在applicationContext.xml中进行如下配置<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springfr 阅读全文
posted @ 2012-02-18 13:22 张良 阅读(318) 评论(0) 推荐(0) 编辑