`
kylinsoong
  • 浏览: 240152 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
PROLOGUE:       When deploying enterprise application like EJB on some enterprise-based container, we also need to bound lots of important busniss resource with our application. Important means critical, security can be one of most important aspect what we should think about when we building our app ...
      When we are in software developing we usually need to do some very simple things manually, for instance, we offen need to check the files under a directory is added or deleted. especially when your software come to test peroid, that means you have to install and uninstall your software many tim ...
      Jboss has a series of implementation of InitialContext Factory, but  this blog only concentrated on org.jboss.security.jndi.LoginInitialContextFactory, and I was planned to prestent this issue as Two main part, Part One: Theroy-based(including some definition of LoginInitialContextFactory, Init ...
      Crazy Programmer Homework will be released as a series what i had planed, today i will pull the first term:Crazy Programmer Homework One, and the Two, Three... will coming sooner       Today's Topic is Apache Xalan, i do not spend a lot of time to dipict Xalan's definition, history, usages and ...
1. Unable to locate a login configuration        If you missing the auth.conf file which holding the client side JAAS configuration, you will accepte this Exception:(Only be used to invoke Remote Interface with Security Login): Exception in thread "main" java.lang.SecurityException: Unab ...
最近在英国出差,发现这里的一些网站做的相当有特色,有些网站不是什么华丽,但给人感觉很舒服,如BBC http://www.bbc.co.uk/ 大家说说这个网站前台用的是什么技术?
1. 开篇说明:今天是春节长假的最后一天,春节过后博客将继续,这篇博客主要用来总结年前的研究结果,研究的主要Hibernate OneToMany 单向和双向配置对数据存取性能的问题。本文按照我测试实验的过程,最后得出结论。   2. ...
从一组定义开始: XSL:指扩展样式表语言(EXtensible Stylesheet Language)。XSL 可描述如何来显示 XML 文档,当然万维网联盟 (W3C) 发展XSL 的原因就是存在着对于基于 XML 的样式表语言的需求。 XSLT:指 XSL 转换(XSL Transformations)。 XSLT 用于将一种 XML 文档转换为另外一种 XML 文档,或者可被浏览器识别的其他类型的文档,比如 HTML 和 XHTML。通常,XSLT 是通过把每个 XML 元素转换为 (X)HTML 元素来完成这项工作的。 一个简单XSLT转换实例 原始XML(lakers. ...
本文列出几个“EJB 学习阶段总结:JBoss下发布一个Toy企业应用”开发测试过程中遇到的几个问题。 1. Hibernate 懒加载有一定局限性:EJB远程调运时Hibernate懒加载Session失效 通过实例说明:给Entity类中添加Transformer类,Transformer与UserCard存在一对一的单向关联,如下: @Entity(name="Transformer") @Table(name="k_transformer") public class Transformer implements Serializable ...
     解释题目:为什么叫Toy企业应用,因为接下来全文将要描述的应用(home-test-all.ear)没有任何实际应用价值,之所以发布他,只是为了应用EJB相关技术; 解释企业应用:       一个企业应用是指按照JavaEE标准开发出来 ...
在企业系统中需要使用消息传递,在企业系统中使用消息传递需要满足下面几个条件: 1 调用必须是支持异步的; 2 调用必须是可靠的; 3 调用可以支持有多个调用者和多个接受; 为什么消息传递在企业调运中能够满足上面 ...
Windows批处理使用方便、灵活,功能强大,自动化程度高,特别是在项目测试阶段,利用批处理脚步可以方便搭建测试环境或启动单元测试等,本文分三部分:简单介绍批处理用法、一个简单例子(拷贝、删除文件)、一个较复杂 ...
      本例子描述向EJB容器(JBoss)部署http://kylinsoong.iteye.com/blog/824676中描述的例子的全过程,链接博客中描述的例子包含7个实体:User、Event、Friend、Property、Pet、UserCard、Wife,其中:User和Event,User和Friend,Event和Property,Wife和Pet,Pet和Property关系为一对多关系;而User和UserCard,Friend和UserCard,Wife和UserCard,User和Wife之间的关系是一对一关系; 下面开始部署http://kylinsoong. ...
2. 如何由PoJo类生成数据库中的表 首先可以根据实体间关系及对应关系设计表,写出相应建表SQL语句,执行生成表,或者可以用hibernate映射来生成表,在http://kylinsoong.iteye.com/admin/blogs/739502一开始说明怎样通过hibernate mapping生成表; 我们例子生成表如下图所示:   共生成11张表,7个实体对应7张表及5个一对多关联表(User和Event,User和Friend,Event和Property,Wife和Pet,Pet和Property)。   3. FetchType Lazy及Eager测试 一对一下F ...
最近工作中遇到几个与JPA相关的问题,本文通过一个例子总结一下这些问题。 1 给出一个例子: 如下图表式Persistent Context中所有实体的关系图:  从图中可以看到: 所有实体间对应关系都是单向的; User和Event,User和Friend,Event和Property,Wife和Pet,Pet和Property关系为一对多关系; User和UserCard,Friend和UserCard,Wife和UserCard,User和Wife之间的关系是一对一关系; 如http://kylinsoong.iteye.com/blog/807937所示创建工程; 贴出相 ...
Global site tag (gtag.js) - Google Analytics