User-submitted Projects

97
1708 reads
The Hello World Servlet Example
The helloworld servlet example below demonstrates how to create a simple servlet. The example allows the user to view the "Hello World" message as output.
The Hello World Servlet Example

Run It Now!
65
1330 reads
Rohan's picture

Submitted by

Rohan
Prototype
This example demonstrates prototype in java.prototype Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.
Run It Now!
271
3156 reads
Rohan's picture

Submitted by

Rohan
Chain of Responsibility
this example demonstrates Chain of Responsibility in java.It avoids attaching the sender of a request to its receiver, giving this way other objects the possibility of handling the request too. - The
Run It Now!
71
2086 reads
Rohan's picture

Submitted by

Rohan
Roman Numeral Converter
This example demonstrates Roman Numeral Converter in java.The classical example fot the interpreter pattern is the one of interpreting the roman numerals.
Run It Now!
155
1678 reads
Anuj's picture

Submitted by

Anuj
A Simple Servlet
The hello world example below demonstrates the working of servlets. The example allows the user to view Hello World message as output.
A Simple Servlet

Run It Now!
120
1873 reads
Anuj's picture

Submitted by

Anuj
Tags:

AccessingClassVariables01
The below example demonstrates how to access class variable in java. The below example creates an object for Class AccessingClassVariables01 and accesses the class field member i.e fullName through
Run It Now!