我就在这里
发布时间:2014-05-29 21:47:49
一:Jboss的环境配置(略)二:开发环境jboss-4.2.2.GA+JDK1.6三: JMS 简单介绍1. 当你发送一个消息,你不能直接发送到对此消息感兴趣的接受者。而是你发送到一个目的地。对此消息感兴趣的接受者必须连接到目的地,得到此消息或在目的地设置订阅。2. 在JMS中有两种域:topics&nbs.........【阅读全文】
发布时间:2014-05-24 22:22:40
转自:http://examples.javacodegeeks.com/enterprise-java/jms/simple-jms-example-on-jboss-5-1/In this example we shall show you how to create a simple hello World example in JMS, using JBoss 5.1. JMS is a very popular API standard for messaging, and most messaging systems provide a JMS API. To crea.........【阅读全文】
发布时间:2014-05-24 21:38:20
Function EncrypKey (Src:String; Key:String):string; var idx :integer; KeyLen :Integer; KeyPos :Integer; offset :Integer; dest :string; S.........【阅读全文】
发布时间:2014-05-24 20:47:49
前言现在的网站,基本上都离不开数据库,而微软的SQL Server就是其中应用较广的数据库。如果要在JBoss7中使用MSSQL,就要配置DataSource,即数据源。至于如何配置,可以参考如下的内容。 准备JDBC首先去MSSQL的官网下载最新的JDBC驱动程序,相关的链接如下所示:http://www.microsoft.com/downl.........【阅读全文】
发布时间:2014-05-24 18:19:53
1.将mysql的JDBC驱动放到的JBOSS_HOME\server\default\lib 下2.把JBOSS_HOME\docs\examples\jca\mysql-ds.xml 复制到JBOSS_HOME\server\default\deploy目录下。修改mysql- ds.xml文件例:MySqlDS jdbc:mysql://localhost.........【阅读全文】