Time for action – modifying a profile

For example, to modify the default profile, just make a copy of it first:

cp -pR server/default server/default_original

Then hack away at the default profile, secure in the knowledge that you can easily restore it.

Deployable Java archives

What types of artifacts are deployable to application servers?

There are several, namely:

  • .jar: This is a Java archive. A JAR file is used to distribute multiple Java classes in one file.
  • .war: This is a web application archive. A WAR file* is used to deploy web applications such as JavaServer Pages (JSPs) and Servlets.
  • .ear: This is an enterprise application archive. An EAR file is used to deploy enterprise applications which include such assets as EJBs.
  • .sar: This is a JBoss service archive. A SAR file is used to deploy a service to a JBoss application server.
  • .esb: This is a JBoss ESB service archive. An ESB file is used to deploy a JBoss ESB service to an application server that has JBoss ESB deployed.

    * WAR, EAR, SAR, and ESB can be deployed either as files where the file format is actually a compressed file, or as a directory with the same .war, or other extension in its name. If the compressed file has been uncompressed into a directory, it is referred to as an "exploded" WAR, EAR, and so on.

In a nutshell, the act of deploying JBoss ESB to an application server deploys these archives to the server.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.223.125.219