本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- ranbuijj
- wallimn
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
Eclipse4.2+Jboss7/Jboss-eap-6.0+EJB3.1分布式开发 最终篇
最终篇(终于可以展示分布式调用了)
经过我们的努力,现在我们马上就能见到Jboss7下面EJB的分布式开发和调用了。下面,我将讲解使用前对吼的配置。
打开我们的Client端Jboss Server的standalone.xml文件
添加security-realms,还记得我们第一篇里面在Server端配置的用户名和密码吗?就是下面这个<secret value=&qu ...
Eclipse4.2+Jboss7/Jboss-eap-6.0+EJB3.1分布式开发 第三篇
第三篇(EJB Client端的开发)
建立一个Dynamic Web Project,项目名称为EJBClient。项目结构为:
还记得上一篇中给Server端的项目添加Maven支持了吗,这里就用到了。右键那个项目->run as->maven build...,run 完之后你就可以在项目根目录的target下面找到此项目打成的jar包了。 E:\project\J2E ...
Eclipse4.2+Jboss7/Jboss-eap-6.0+EJB3.1分布式开发 第一篇
第一篇(EJB Server端的配置)
开发工具准备:Eclipse4.2,jbosstools-4.0.0.Final,Jboss7或者Jboss-eap-6.0(架构一样),这些工具在哪里下载和发布以后我会发布一个骗专门的博客来说明,今天在这里就不多说了,我们直接进入正题。
开发环境说明,
我用的是windows7操作系统,其他操作系统可能会有些不同的配置方法,但是肯定是可 ...
jee6 学习笔记 7.1 - @WebService
Exposing an EJB as web service is just a matter of a few annotations.
This example exposes an ejb as standard SOAP web services. It uses default JAX-WS 2.1.6, which is part of the JDK1.6 distribution ...
jee6 学习笔记 6.3 - @Asynchronous
the idea is to the EJB3.1 @Asynchronous ejbs
screen shot 1: call async ejb without receiving a result
screen shot 2: call async ejb and get a result
the jsf page:
<!DOCTYPE html PUBLIC &qu ...
jee6 学习笔记 6.2 - @Schedule
This tests the ejb3.1 annotation @Schedule.
The idea is to print the server time regularly, in a scheduled task method.
package com.jxee.ejb.test.singleton;
import java.util.Date;
import java ...
jee6 学习笔记 6.1 - Singleton EJB
The idea of the test is to print the instance of the singleton ejb for different requests. The singleton ejb is referenced in the request scoped backing bean.
the screen shot of the test page:
th ...
jee6 学习笔记 6 - EJB3.1 What's New
The following is a brief list of the new features of EJB3.1
1. no interface required
@Stateless
public class MyEjb { ...}
2. singleton EJB: @Singleton
@Singleton
public class MySingleton { .. ...
jee6 学习笔记 2 - @ManagedBean
看看BackingBean(or ActionBean if you like),先上图。
the login screen
login validation 1: missing required fields
login validation 2: wrong password
home screen: after successful login
login.xhtml
< ...
EJB3.1 JBoss7.1 Eclipse3.7
EJB3.1 JBoss7.1 Eclipse3.7
------Hello World
一、环境配置:
JDK:正常配置
Eclipse:正常下载,解压(V3.7)
JBoss:正常下载,解压(V7.1)
二、JBoss Tools安装
在Eclipse里面安装JBoss Tools3.3
1、【Help