当前位置: 首页 > 工具软件 > JBoss Build > 使用案例 >

JBoss 笔记

欧阳睿范
2023-12-01

Windows 安装和启动 JBoss 7

步骤一 Download

步骤二 解压到指定目录

步骤三 配置 JAVA_HOME 环境变量

建议使用 JDK 7,而且 JAVA_HOME 不配置会导致 JBoss 启动失败

双击运行 <JBOSS_HOME>/bin/standalone.bat 即可

Ant

<?xml version="1.0" encoding="UTF-8"?>
 
<project basedir="." name="ejb-0113">
 
	<!-- 源代码路径 -->
	<property name="src.dir" value="${basedir}\src" />
	<!-- 系统环境变量 -->
	<property environment="env" />
	<!-- JBOSS 目录 -->
	<property name="jboss.home" value="${env.JBOSS_HOME}" />
	<!-- peizhi -->
	<property name="jboss.server.config" value="default" />
	<!-- 编译路径 -->
	<property name="build.dir" value="${basedir}\build" />
 
 
	<path id="build.classpath">
		<fileset dir="${jboss.home}\bin\client">
			<include name="*.jar" />
		</fileset>
		<pathelement location="${build.dir}" />
	</path>
 
	<target name="prepare">
		<delete dir="${build.dir}"/>
		<mkdir dir="${build.dir}" />
	</target>
 
	<target name="compile" depends="prepare" description="编译">
		<javac srcdir="${src.dir}" destdir="${build.dir}" includeantruntime="on">
 
			<classpath refid="build.classpath">
			</classpath>
		</javac>
	</target>
 
	<target name="ejbjar" depends="compile" description="创建EJB发布包">
		<jar destfile="${basedir}\${ant.project.name}.jar">
			<fileset dir="${build.dir}">
				<include name="**/*.class" />
			</fileset>
		</jar>
	</target>
 
	<target name="deploy" depends="ejbjar" description="发布 EJB">
		<copy file="${basedir}\${ant.project.name}.jar" todir="${jboss.home}\standalone\deployments">
		</copy>
	</target>
 
 
	<target name="undeploy" description="卸载 EJB">
		<delete file="${jboss.home}\standalone\deployments\${ant.project.name}.jar">
		</delete>
	</target>
 
</project>

Eclipse 开发

使用 eclipse 开发,直接 export 为 JAR 文件即可。

但需要注意,右键 Project,选择 Java Compiler,选中 Enable project specific settings,指定下方的编译 level,降低到 1.7 否则 JBoss 7 部署报错。

打包 JAR 文件之后,放置于 <JBOSS_HOME>\standalone\deployments 下即可,此时会立即出现一个文件:xxx.jar.deployed,如果部署失败,则会出现 xxx.jar.failed,考虑上述解决方式

 类似资料: