All you need to build this project is Java 7.0 (Java SDK 1.7), MySQL, Apache Maven 3.1.1 and JBoss AS 7.1.1.Final.
The application this project produces is designed to be run on JBoss AS 7.
-
If you have not yet done so, you must Configure Maven before testing.
-
Start the JBoss Server
-
Open a command line and navigate to the root of the JBoss server directory.
-
The following shows the command line to start the server with the web profile:
For Linux: JBOSS_HOME/bin/standalone.sh For Windows: JBOSS_HOME\bin\standalone.bat
-
Make sure you have started the JBoss Server as described above.
-
Open a command line and navigate to the root directory.
-
Type this command to build and deploy the archive:
mvn clean package jboss-as:deploy
-
This will deploy
target/BookStore.war
to the running instance of the server.
The application will be running at the following URL: http://localhost:8080/BookStore/SignIn
-
Make sure you have started the JBoss Server as described above.
-
Open a command line and navigate to the root directory.
-
When you are finished testing, type this command to undeploy the archive:
mvn clean jboss-as:undeploy
-
And then type following command line to shutdown the JBoss Server with the web profile:
For Linux: JBOSS_HOME/bin/jboss-cli.sh --connect command=:shutdown For Windows: JBOSS_HOME\bin\jboss-cli.bat --connect command=:shutdown
For transparency into our release cycle and in striving to maintain backward compatibility, BookStore is maintained under the Semantic Versioning guidelines.
Releases will be numbered with the following format: <major>.<minor>.<patch>
Dozortsev Anton