Here you can find the deployable example JavaServer Pages (JSPs) from my distributed computing class. The project is built using Maven.
This small JSP creates a HTML page printing some greetings and the clock time. Depending on the current time on the server, the greeting will be "Good Morning!" or "Good Evening!".
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/greetings.jsp.
This small JSP creates a plain text response containing the IP address of the client.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/printClientAddress.jsp.
This JSP counts the number of times it was visited. It does so by creating a long
member variable named numVisitors
. Whenever the servlet is loaded, this variable will be incremented by one and the result is printed. This incrementing and printing step is not protected with synchronization. It is not an atomic operation. This means, the results can potentially become inconsistent. At the same time, this critical section is extremely small and executes extremely fast. This means that the error is virtually impossible to reproduce and to find. If such a programming mistake is made, it might only be discovered in production and would be extremely hard to identify.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/counterUnsynchronized.jsp.
This JSP counts the number of times it was visited, but avoids the synchronization problem from the previous example above. It again creates a long
member variable named numVisitors
. This counter is increased by the private synchronized
method long __inc()
. This fixes the previous error.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/counterSynchronized.jsp.
This JSP includes a small form which allows you to rate the distributed computing course. You can choose between six different ratings. Clicking the submit button will send your chosen rating back to the same page. The internal counters will be updated in a synchronized fashion (see example 1.4 above). The response page of the rating contains a section displaying the ratings received so far. This example can therefore be used to get a rough impression on how the data from web forms is sent to a server and how the server can process it.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/rating.jsp.
This JSP is an example for session data. A session is enriched with a JavaBean named cart
bound to class shopping.Cart
. This bean basically holds a list of items in the user's shopping cart. The shoppingCart.jsp
loads the bean, displays the contents of the shopping cart, and includes another JSP named shoppingCartForm.jsp
which displays a form that allows us to add items to or remove items from the shopping cart. It therefore creates a form which, upon submission, sends it data back to the hosting JSP (shoppingCart.jsp
). This data includes the parameter submit
, which is either add
or remove
(or null
, in which case nothing needs to be done) and the parameter item
, representing the item to be added or removed. The cart
bean therefore has read-only properties add
and remove
which receive the value of item
and update the internal list, i.e., the content of the user's shopping cart. If we open this JSP from multiple different browsers, each will have an own, unique session and, hence, an own, unique instance of shopping.Cart
.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/shoppingCart.jsp.
This JSP includes a set of small examples for the expression language EL which you can use since JSPs 2.1.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/expressionLanguageExamples.jsp.
This JSP includes a set of small examples for the JavaServer Pages Standard Tag Library JSTL which you can use since 2006.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/jstlExamples.jsp.
This is basically the same example as example 1.6, the session-based shopping cart. However, now we make use of both the JSTL and EL to simplify the example.
If your application is running in GlassFish, you can access this JSP as http://localhost:8080/myJSPs/shoppingCartJSTLEL.jsp.
If you import this project in Eclipse, it may first show you a lot of errors. (I recommend using Eclipse Mars or later.) This is a Maven project, so you should "update" it first in Eclipse by
- Make sure that you can see the
package view
on the left-hand side of the Eclipse window. - Right-click on the project (
JavaServer Pages
) in thepackage view
. - In the opening pop-up menu, left-click on
Maven
. - In the opening sub-menu, left-click on
Update Project...
. - In the opening window...
- Make sure the project (
JavaServer Pages
) is selected. - Make sure that
Update project configuration from pom.xml
is selected. - You can also select
Clean projects
. - Click
OK
. - Now the structure of the project in the
package view
should slightly change, the project will be re-compiled, and the errors should disappear.
Now you can actually build the project, i.e., generate a war
file that you can deploy in a servlet container. For building this war
, take the following steps:
- Make sure that you can see the
package view
on the left-hand side of the Eclipse window. - Right-click on the project (
JavaServer Pages
) in thepackage view
. - In the opening pop-up menu, choose
Run As
. - In the opening sub-menu choose
Run Configurations...
. - In the opening window, choose
Maven Build
- In the new window
Run Configurations
/Create, manage, and run configurations
, chooseMaven Build
in the small white pane on the left side. - Click
New launch configuration
(the first symbol from the left on top of the small white pane). - Write a useful name for this configuration in the
Name
field. You can use this configuration again later. - In the tab
Main
enter theBase directory
of the project, this is the folder calledjavaServerPages/examples
containing the Eclipse/Maven project. - Under
Goals
, enterclean compile war:war
. This will build awar
archive. - Click
Apply
- Click
Run
- The build will start, you will see its status output in the console window.
- The folder
target
will contain a filemyJSPs.war
after the build. This is the deployable archive with our application.
Under Linux, you can also simply run make_linux.sh
in this project's folder to build the servlet without Eclipse, given that you have Maven installed.
GlassFish is a reference implementation of a Java EE 7 application server.
The following steps are for Linux, but under Windows it will be pretty much the same.
- Go to the GlassFish website https://glassfish.java.net/.
- Select download.
- Download the Java EE 7 Web Profile, at the time of this writing, this is GlassFish 4.1.1
- Unpack the downloaded archive into a folder of your liking (let's call this folder
F
). - Open a terminal console and go (
cd
) into folderF
. - In the folder
F
(where you unpackaged the archive), go to sub-folderglassfish4/bin/
, i.e., toF/glassfish4/bin/
. - Type
./asadmin start-domain
. (Under Windows, typeasadmin start-domain
without the leading./
.) The server will now start. - Under Windows, a window may pop up asking you for allowing the program internet access permission, which you should OK.
- Open your web browser and visit its configuration page at
http://localhost:4848
.
-
Find the file
myServlets.war
in the foldertarget
of this example project. -
Copy it into the folder
F/glassfish4/glassfish/domains/domain1
. -
In your web browser, visit
http://localhost:4848
. -
Click
Applications
in the menu pane on the right. -
It should list
myJSPs
. If you click this menu point, you get a list of the installed servlets. -
You can access the JavaServer Pages as follows