1. Install jdk1.4.2 into the d:/j2sdk1.4.2_05 directory
2. Configure JDK parameters in environment variables (configuration can be replaced with variables, readers can set themselves)
CLASSPATH D:/j2sdk1.4.2_05/jre/lib
Java_home d:/j2sdk1.4.2_05
Path Add D:/j2sdk1.4.2_05/bin
3. Download Jboss-3.2.2rc1_tomcat-4.1.24.zip package to jboss.net website
Http://switch.dl.sourceforge.net/sourceforge/jboss/jboss-3.2.2RC1_tomcat-4.1.24.zip
4. Unzip, create a folder JBoss in D disk, and copy the compressed bin, client, Docs, LIB, and server to the D:/jboss folder.
5. Open the D:/jboss/bin folder and execute the run.bat batch file.
6. In the IE Address bar input http://localhost:8080/jmx-console/, for testing.
7. Create a Test.war folder under the D:/jboss/server/default/deploy folder and create a index.jsp file in it.
The contents of the 8.index.jsp file are as follows:
<title>
Test
</title>
<body bgcolor= "#ffffff" >
<%
Response.getwriter (). Write ("This is a Test");
%>
</body>
9. In the IE Address bar, enter Http://localhost:8080/test, test, if the output is a test string, test success.