Complete Java&J2 EE
Complete Java&J2 EE
JAVA
Client calls create()
Abstraction: Showing the essential and hiding the non-Essential is known as Abstraction.
Encapsulation: The Wrapping up of data and functions into a single unit is known as
Encapsulation.
Encapsulation is the term given to the process of hiding the implementation details of
the object. Once an object is encapsulated, its implementation details are not immediately
accessible any more. Instead they are packaged and are only indirectly accessed via the
interface of the object.
Inheritance: is the Process by which the Obj of one class acquires the properties of Obj’s
another Class.
A reference variable of a Super Class can be assign to any Sub class derived from the
Super class.
Inheritance is the method of creating the new class based on already existing class ,
the new class derived is called Sub class which has all the features of existing class and its
own, i.e sub class.
Adv: Reusability of code , accessibility of variables and methods of the Base class by the
Derived class.
Polymorphism: The ability to take more that one form, it supports Method Overloading &
Method Overriding.
Method overloading: When a method in a class having the same method name with
different arguments (diff Parameters or Signatures) is said to be Method Overloading. This
is Compile time Polymorphism.
o Using one identifier to refer to multiple items in the same scope.
Method Overriding: When a method in a Class having same method name with same
arguments is said to be Method overriding. This is Run time Polymorphism.
o Providing a different implementation of a method in a subclass of the class that originally
defined the method.
1. In Over loading there is a relationship between the methods available in the same class
,where as in Over riding there is relationship between the Super class method and Sub
class method.
2. Overloading does not block the Inheritance from the Super class , Where as in
Overriding blocks Inheritance from the Super Class.
3. In Overloading separate methods share the same name, where as in Overriding Sub
class method replaces the Super Class.
4. Overloading must have different method Signatures , Where as Overriding methods
must have same Signatures.
Dynamic Binding: Means the code associated with the given procedure call is not known
until the time of call the call at run time. (it is associated with Inheritance &
Polymorphism).
Interface: Interfaces can be used to implement the Inheritance relationship between the
non-related classes that do not belongs to the same hierarchy, i.e. any Class and any
where in hierarchy. Using Interface, you can specify what a class must do but not how it
does.
A class can implement more than one Interface.
An Interface can extend one or more interfaces, by using the keyword extends.
All the data members in the interface are public, static and Final by default.
An Interface method can have only Public, default and Abstract modifiers.
An Interface is loaded in memory only when it is needed for the first time.
A Class, which implements an Interface, needs to provide the implementation of all the
methods in that Interface.
If the Implementation for all the methods declared in the Interface are not provided , the
class itself has to declare abstract, other wise the Class will not compile.
If a class Implements two interface and both the Intfs have identical method declaration, it
is totally valid.
If a class implements tow interfaces both have identical method name and argument list,
but different return types, the code will not compile.
An Interface can’t be instantiated. Intf Are designed to support dynamic method resolution
at run time.
An interface can not be native, static, synchronize, final, protected or private.
The Interface fields can’t be Private or Protected.
A Transient variables and Volatile variables can not be members of Interface.
The extends keyword should not used after the Implements keyword, the Extends must
always come before the Implements keyword.
A top level Interface can not be declared as static or final.
If an Interface species an exception list for a method, then the class implementing the
interface need not declare the method with the exception list.
If an Interface can’t specify an exception list for a method, the class can’t throw an
exception.
If an Interface does not specify the exception list for a method, he class can not throw any
exception list.
The general form of Interface is
Access interface name {
return-type method-name1(parameter-list);
type final-varname1=value;
}
-----------------------
Marker Interfaces : Serializable, Clonable, Remote, EventListener,
Java.lang is the Package of all classes and is automatically imported into all Java Program
Interfaces: Clonable , Comparable, Runnable
Abstract Class means - Which has more than one abstract method which doesn’t have
method body but at least one of its methods need to be implemented in derived Class.
The Number class in the java.lang package represents the abstract concept of
numbers. It makes sense to model numbers in a program, but it doesn't make sense to
create a generic number object.
Public : The Variables and methods can be access any where and any package.
Protected : The Variables and methods can be access same Class, same Package & sub
class.
Private : The variable and methods can be access in same class only.
Identifiers : are the Variables that are declared under particular Datatype.
Constructor( ) :
A constructor method is special kind of method that determines how an object is
initialized when created.
Constructor has the same name as class name.
Constructor does not have return type.
Constructor cannot be over ridden and can be over loaded.
Default constructor is automatically generated by compiler if class does not have once.
If explicit constructor is there in the class the default constructor is not generated.
If a sub class has a default constructor and super class has explicit constructor the code
will not compile.
Object : Object is a Super class for all the classes. The methods in Object class as follows.
Object clone( ) final void notify( ) Int hashCode( )
Boolean equals( ) final void notify( )
Void finalize( ) String toString( )
Final Class getClass( ) final void wait( )
Class : The Class class is used to represent the classes and interfaces that are loaded by
the JAVA Program.
Character : A class whose instances can hold a single character value. This class also defines
handy methods that can manipulate or inspect single-character data.
constructors and methods provided by the Character class:
Character(char) : The Character class's only constructor, which creates a Character
object containing the value provided by the argument. Once a Character object has
been created, the value it contains cannot be changed.
compareTo(Character) :An instance method that compares the values held by two
character objects.
equals(Object) : An instance method that compares the value held by the current
object with the value held by another.
toString() : An instance method that converts the object to a string.
charValue() :An instance method that returns the value held by the character object
as a primitive char value.
isUpperCase(char) : A class method that determines whether a primitive char value
is uppercase.
String: String is Immutable and String Is a final class. The String class provides for strings
whose value will not change.
One accessor method that you can use with both strings and string buffers is the
length() method, which returns the number of characters contained in the string or the
string buffer. The methods in String Class:-
toString( ) equals( ) indexOff( ) LowerCase( )
charAt( ) compareTo( ) lastIndexOff( ) UpperCase( )
getChars( ) subString( ) trim( )
getBytes( ) concat( ) valueOf( )
Wraper Classes : are the classes that allow primitive types to be accessed as Objects.
These classes are similar to primitive data types but starting with capital letter.
Number Byte Boolean
Double Short Character
Float Integer
Long
primitive Datatypes in Java :
According to Java in a Nutshell, 5th ed boolean, byte, char, short, long float, double, int.
Float class : The Float and Double provides the methods isInfinite( ) and isNaN( ).
isInfinite( ) : returns true if the value being tested is infinetly large or small.
isNaN( ) : returns true if the value being tested is not a number.
String Tokenizer : provide parsing process in which it identifies the delimiters provided by
the user, by default delimiters are spaces, tab, new line etc., and separates them from the
tokens. Tokens are those which are separated by delimiters.
Observable Class: Objects that subclass the Observable class maintain a list of observers.
When an Observable object is updated it invokes the update( ) method of each of its
observers to notify the observers that it has changed state.
Observer interface : is implemented by objects that observe Observable objects.
Instanceof( ) :is used to check to see if an object can be cast into a specified type with out
throwing a cast class exception.
Anonymous class : Anonymous class is a class defined inside a method without a name and
is instantiated and declared in the same place and cannot have explicit constructors.
What is reflection API? How are they implemented
Reflection package is used mainlyfor the purpose of getting the class name. by useing the
getName method we can get name of the class for particular application. Reflection is a
feature of the Java programming language. It allows an executing Java program to examine
or "introspect" upon itself, and manipulate internal properties of the program.
Downcasting : is the casting from a general to a more specific type, i.e casting down the
hierarchy. Doing a cast from a base class to more specific Class, the cast does;t convert
the Object, just asserts it actually is a more specific extended Object.
Exception handling
Exception can be generated by Java-runtime system or they can be manually generated by code.
Exception class : is used for the exceptional conditions that are trapped by the program.
An exception is an abnormal condition or error that occur during the execution of the program.
Error : the error class defines the conditions that do not occur under normal conditions.
Eg: Run out of memory, Stack overflow error.
Java.lang.Object
+….Java.Lang.Throwable Throwable
+…. Java.lang.Error
| +…. A whole bunch of errors
| Exception Error
+….Java.Lang.Exception (Unchecked, Checked)
+….Java.Lang.RuntimeException
| +…. Various Unchecked Exception
|
+…. Various checked Exceptions.
2. Un-checked Exceptions: Run-time Exceptions and Error, does’t have to be declare.(but can be
caught).
Run-time Exceptions : programming errors that should be detectd in Testing ,
Arithmetic, Null pointer, ArrayIndexOutofBounds, ArrayStore, FilenotFound, NumberFormate, IO,
OutofMemory.
Errors: Virtual mechine error – class not found , out of memory, no such method , illegal access to
private field , etc.
Catch: This is a default exception handler. since the exception class is the base class
for all the exception class, this handler id capable of catching any type of exception.
The catch statement takes an Object of exception class as a parameter, if an exception is thrown
the statement in the catch block is executed. The catch block is restricted to the statements in the
proceeding try block only.
Try {
}
Finally : when an exception is raised, the statement in the try block is ignored, some
times it is necessary to process certain statements irrespective of wheather an
exception is raised or not, the finally block is used for this purpose.
Throw : The throw class is used to call exception explicitly. You may want to throw
an exception when the user enters a wrong login ID and pass word, you can use
throw statement to do so.
The throw statement takes an single argument, which is an Object of exception class.
Throw<throwable Instance>
If the Object does not belong to a valid exception class the compiler gives error.
Throws :The throws statement species the list of exception that has thrown by a
method.
If a method is capable of raising an exception that is does not handle, it must specify the
exception has to be handle by the calling method, this is done by using the throw statement.
[<access specifier>] [<access modifier>] <return type> <method name> <arg-list>
[<exception-list>]
A multithreaded program contains two or more parts that can run concurrently, Each part
a program is called thread and each part that defines a separate path of excution.
Thus multithreading is a specified from of multitasking .
Thread-based: is Light weight- A Program can perform two or more tasks simultaneously.
Creating a thread:
Eg: A text editor can formate at the same time you can print, as long as these two tasks are
being perform separate treads.
Creating a Thread :
1. By implementing the Runnable Interface.
2.By extending the thread Class.
Runable Interface : The Runnable interface consist of a Single method Run( ), which is
executed when the thread is activated.
When a program need ti inherit from another class besides the thread Class, you need to
implement the Runnable interface.
Syntax: public void <Class-name> extends <SuperClass-name> implements Runnable
New Thread : When an instance of a thread class is created, a thread enters the new thread
state. Thread newThread = new Thread(this);
You have to invoke the Start( ) to start the thread. ie, newThread.Start( );
Runnable : when the Start( ) of the thread is invoked the thread enters into the Runnable
State.
sleep(long t); where t= no: of milliseconds for which the thread is inactive.
The sleep( ) is a static method because it operates on the current thread.
IsAlive( ) : of the thread class is used to determine wheather a thread has been started or
stopped. If isAlive( ) returns true the thread is still running otherwise running completed.
Thread Priorities : are used by the thread scheduler to decide when each thread should ne
allowed to run.To set a thread priority, use te setpriority( ), which is a member of a thread.
final void setpriority(int level) - here level specifies the new priority seting for the
calling thread.
You can obtain the current priority setting by calling getpriority( ) of thread.
final int getpriority( )
Synchronization :
Two ro more threads trying to access the same method at the same
point of time leads to synchronization. If that method is declared as Synchronized , only
one thread can access it at a time. Another thread can access that method only if the first
thread’s task is completed.
Serialization : The process of writing the state of Object to a byte stream to transfer
over the network is known as Serialization.
Deserialization : and restored these Objects by deserialization.
Externalizable : is an interface that extends Serializable interface and sends data into
strems in compressed format. It has two methods
WriteExternal(Objectoutput out)
ReadExternal(objectInput in)
2. CharacterStream : File
FileInputStream - Store the contents to the File.
FileOutStream - Get the contents from File.
PrintWrite pw = new printwriter(System.out.true);
Pw.println(“ “);
Eg :-
Class myadd
{
public static void main(String args[ ])
{
BufferReader br = new BufferReader(new InputStreamReader(System.in));
System.out.println(“Enter A no : “);
int a = Integer.parseInt(br.Read( ));
System.out.println(“Enter B no : “);
int b = Integer.parseInt(br.Read( ));
System.out.println(“The Addition is : “ (a+b));
}
}
Collections
Set Interface: extends Collection Interface. The Class Hash set implements Set
Interface.
Is used to represent the group of unique elements.
Set stores elements in an unordered way but does not contain duplicate elements.
Sorted set : extends Set Interface. The class Tree Set implements Sorted set Interface.
It provides the extra functionality of keeping the elements sorted.
It represents the collection consisting of Unique, sorted elements in ascending order.
List : extends Collection Interface. The classes Array List, Vector List & Linked List
implements List Interface.
Represents the sequence of numbers in a fixed order.
But may contain duplicate elements.
Elements can be inserted or retrieved by their position in the List using Zero based index.
List stores elements in an ordered way.
Map Interface:basic Interface.The classesHash Map & Hash Table implements Map
interface.
Used to represent the mapping of unique keys to values.
By using the key value we can retrive the values. Two basic operations are get( ) & put( ) .
Sorted Map : extends Map Interface. The Class Tree Map implements Sorted Map
Interface.
Maintain the values of key order.
The entries are maintained in ascending order.
Collection classes:
Abstract Collection
Abstract Array List Hash Set Tree Set Hash Map Tree Map
Sequential
List
Linked List
List Map
| |
Abstract List Dictonary
| |
Vector HashTable
| |
Stack Properities
HashSet : Implements Set Interface. HashSet hs=new
HashSet( );
The elements are not stored in sorted order. hs.add(“m”);
Iterarator Enumerator
Iterator itr = a1.iterator( ); Enumerator vEnum = v.element( );
While(itr.hashNext( )) System.out.println(“Elements in
Vector :”);
{ while(vEnum.hasMoreElements( ) )
Introduction :
•Does your class need a way to easily search through thousands of items quickly?
• Does it need an ordered sequence of elements and the ability to rapidly insert and
remove elements in the middle of the sequence?• Does it need an array like structure with
random-access ability that can grow at runtime?
List Map
| |
Abstract List Dictonary
| |
Vector HashTable
| |
Stack Properities
VECTOR :
Vector implements dynamic array. Vector v = new vector( );
Vector is a growable object. V1.addElement(new Integer(1));
Vector is Synchronized, it can’t allow special characters and null values.
Vector is a variable-length array of object references.
Vectors are created with an initial size.
When this size is exceeded, the vector is automatically enlarged.
When objects are removed, the vector may be shrunk.
Methods :
Object push(Object item) : Pushes an item onto the top of this stack.
Object pop() : Removes the object at the top of this stack and returns that object as the
value of this function. An EmptyStackException is thrown if it is called on empty stack.
boolean empty() : Tests if this stack is empty.
Object peek() : Looks at the object at the top of this stack without removing it from the
stack.
int search(Object o) : Determine if an object exists on the stack and returns the number
of pops that would be required to bring it to the top of the stack.
HashTable :
Hash Table is synchronized and does not permit null values.
Hash Table is Serialized. Hashtable ht = new Hashtable( );
Stores key/value pairs in Hash Table. ht.put(“Prasadi”,new Double(74.6));
Hashtable is a concrete implementation of a Dictionary.
Dictionary is an abstract class that represents a key/value storage repository.
A Hashtable instance can be used store arbitrary objects which are indexed by any other
arbitrary object.
A Hashtable stores information using a mechanism called hashing.
When using a Hashtable, you specify an object that is used as a key and the value (data)
that you want linked to that key.
Methods :
Object put(Object key,Object value) : Inserts a key and a value into the hashtable.
Object get(Object key) : Returns the object that contains the value associated with key.
boolean contains(Object value) : Returns true if the given value is available in the
hashtable. If not, returns false.
boolean containsKey(Object key) : Returns true if the given key is available in the
hashtable. If not, returns false.
Enumeration elements() : Returns an enumeration of the values contained in the hashtable.
int size() : Returns the number of entries in the hashtable.
Properties
Strng getProperty(String key, String defaultProperty) : Returns the value associated with
key. defaultProperty is returned if key is neither in the list nor in the default property list .
Enumeration propertyNames() : Returns an enumeration of the keys. This includes those
keys found in the default property list.
Collection :
A collection allows a group of objects to be treated as a single unit.
The Java collections library forms a framework for collection classes.
The CI is the root of collection hierarchy and is used for common functionality across all
collections.
There is no direct implementation of Collection Interface.
Two fundamental interfaces for containers:
• Collection
boolean add(Object element) : Inserts element into a collection
Set Interface: extends Collection Interface. The Class Hash set implements Set Interface.
Is used to represent the group of unique elements.
Set stores elements in an unordered way but does not contain duplicate elements.
identical to Collection interface, but doesn’t accept duplicates.
Sorted set : extends Set Interface. The class Tree Set implements Sorted set Interface.
It provides the extra functionality of keeping the elements sorted.
It represents the collection consisting of Unique, sorted elements in ascending order.
expose the comparison object for sorting.
List Interface :
ordered collection – Elements are added into a particular position.
Represents the sequence of numbers in a fixed order.
But may contain duplicate elements.
Elements can be inserted or retrieved by their position in the List using Zero based
index.
List stores elements in an ordered way.
Map Interface: Basic Interface.The classes Hash Map & HashTable implements Map
interface.
Used to represent the mapping of unique keys to values.
By using the key value we can retrive the values.
Two basic operations are get( ) & put( ) .
boolean put(Object key, Object value) : Inserts given value into map with key
Object get(Object key) : Reads value for the given key.
Abstract Array List Hash Set Tree Set Hash Map Tree Map
Sequential
List
Linked List
ArrayList
• Similar to Vector: it encapsulates a dynamically reallocated Object[] array
• Why use an ArrayList instead of a Vector?
• All methods of the Vector class are synchronized, It is safe to access a Vector object from
two threads.
• ArrayList methods are not synchronized, use ArrayList in case of no synchronization
• Use get and set methods instead of elementAt and setElementAt methods of vector
HashSet
• Implements a set based on a hashtable
• The default constructor constructs a hashtable with 101 buckets and a load factor of 0.75
HashSet(int initialCapacity)
HashSet(int initialCapacity,float loadFactor)
loadFactor is a measure of how full the hashtable is allowed to get before its capacity is
automatically increased
• Use Hashset if you don’t care about the ordering of the elements in the collection
TreeSet
• Similar to hash set, with one added improvement
• A tree set is a sorted collection
• Insert elements into the collection in any order, when it is iterated, the values are
automatically presented in sorted order
HashMap
hashes the keys
The Elements may not in Order.
Hash Map is not synchronized and permits null values
Hash Map is serialized.
Hash Map supports Iterators.
TreeMap
• uses a total ordering on the keys to organize them in a search tree
• The hash or comparison function is applied only to the keys
• The values associated with the keys are not hashed or compared.
Will there be a performance penalty if you make a method synchronized? If so, can you
make any design changes to improve the performance
yes.the performance will be down if we use synchronization.
one can minimise the penalty by including garbage collection algorithm, which reduces the
cost of collecting large numbers of short- lived objects. and also by using Improved thread
synchronization for invoking the synchronized methods.the invoking will be faster.
What is a memory footprint? How can you specify the lower and upper limits of the RAM
used by the JVM? What happens when the JVM needs more memory?
when JVM needs more memory then it does the garbage collection, and sweeps all the
memory which is not being used.
can we declare multiple main() methods in multiple classes. ie can we have each main
method in its class in our program?
YES
About ODBC
What is ODBC
ODBC (Open Database Connectivity) is an ISV (Independent software vendor product)
composes of native API to connect to different databases through via a single API called
ODBC.
Open Database Connectivity (ODBC) is an SQL oriented application programming interface
developed by in collaboration with IBM and some other database vendors.
ODBC comes with Microsoft products and with all databases on Windows OS.
ODBC Architecture
Oracle DSN
Oracle ODBC
Oracle
My DSN
Advantages
Single API (Protocol) is used to interact with any DB
Switching from one DB to another is easy
Doesn’t require any modifications in the Application when you want to shift from
one DB to other.
What for JDBC?
As we have studied about ODBC and is advantages and came to know that it provides
a common API to interact with any DB which has an ODBC Service Provider’s
Implementation written in Native API that can be used in your applications.
What is JDBC
As explained above JDBC standards for Java Data Base Connectivity. It is a
specification given by Sun Microsystems and standards followed by X/Open SAG (SQL
Access Group) CLI (Call Level Interface) to interact with the DB.
Java programing language methods. The JDBC API provides database-independent
connectivity between the JAVA Applications and a wide range of tabular data bases. JDBC
technology allows an application component provider to:
Perform connection and authentication to a database server
Manage transactions
Moves SQL statements to a database engine for preprocessing and
execution
Executes stored procedures
Inspects and modifies the results from SELECT statements
JDBC API
JDBC API is divided into two parts
1. JDBC Core API
2. JDBC Extension or Optional API
JDBC Core API (java.sql package)
This part of API deals with the following futures
1. Establish a connection to a DB
2. Getting DB Details
3. Getting Driver Details
4. maintaining Local Transaction
5. executing query’s
6. getting result’s (ResultSet)
7. preparing pre-compiled SQL query’s and executing
8. executing procedures & functions
JDBC Ext OR Optional API (javax.sql package)
This part of API deals with the following futures
1. Resource Objects with Distributed Transaction Management support
2. Connection Pooling.
These two parts of Specification are the part of J2SE and are inherited into J2EE i.e. this
specification API can be used with all the component’s given under J2SE and J2EE.
JDBC Architecture:
JDBC Application
JDB
C
API
JDBC Driver
SP SP SP
A A AP
PI atrchowdary Yahoo
You have Downloaded this file from PI Group I 23
Oracle DB MS SQL Sybase DB
Server DB
In the above show archetecture diagram the JDBC Drive forms an abstraction
layer between the JAVA Application and DB, and is implemented by 3 rd party vendors or a
DB Vendor. But whoever may be the vendor and what ever may be the DB we need not to
worry will just us JDCB API to give instructions to JDBC Driver and then it’s the
responsibility of JDBC Driver Provider to convert the JDBC Call to the DB Specific Call.
And this 3rd party vendor or DB vendor implemented Drivers are classified into 4-Types
namely
Types Of Drivers :
Architecture
DBMS
Interface
DBMS Server
Libraries
This type of Driver is designed to convert the JDBC request call to ODBC call and ODBC
response call to JDBC call.
The JDBC uses this interface in order to communicate with the database, so neither
the database nor the middle tier need to be Java compliant. However ODBC binary code
must be installed on each client machine that uses this driver. This bridge driver uses a
configured data source.
Advantages
Simple to use because ODBC drivers comes with DB installation/Microsoft front/back
office product installation
JDBC ODBC Drivers comes with JDK software
Disadvantages
More number of layers between the application and DB. And more number of API
conversions leads to the downfall of the performance.
Slower than type-2 driver
Where to use?
This type of drivers are generaly used at the development time to test your application’s.
Because of the disadvantages listed above it is not used at production time. But if we are
not available with any other type of driver implementations for a DB then we are forced to
use this type of driver (for example Microsoft Access).
This driver converts the JDBC call given by the Java application to a DB specific native call
(i.e. to C or C++) using JNI (Java Native Interface).
Advantages :Faster than the other types of drivers due to native library participation in
socket programing.
Disadvantage : DB spcifiic native client library has to be installed in the client machine.
Preferablly work in local network environment because network service name
must be configured in client system
Where to use?
This type of drivers are suitable to be used in server side applications.
Architecture :
Disadvantages:
Architecture
JDBC
JDBC Type IV DBMS Interface
Application JDBC Native Protocol Server Listener
Driver
API
DBMS
API
DBMS
This type of driver converts the JDBC call to a DB defined native protocol.
Advantage
Type-4 driver are simple to deploy since there is No client native libraries required to
be installed in client machine
Comes with most of the Databases
Disadvantages:
Slower in execution compared with other JDBC Driver due to Java libraries are used
in socket communication with the DB
Where to use?
This type of drivers are sutable to be used with server side applications, client side
application and Java Applets also.
In this chapter we are going to discuss about 3 versions of JDBC: JDBC 1.0, 2.0 and 3.0
Q) How JDBC API is common to all the Databases and also to all drivers?
A) Fine! The answer is JDBC API uses Factory Method and Abstract Factory Design pattern
implementations to make API common to all the Databases and Drivers. In fact most of the
classes available in JDBC API are interfaces, where Driver vendors must provide
implementation for the above said interfaces.
Q) Then how JDBC developer can remember or find out the syntaxes of vendor specific
classes?
A) No! developer need not have to find out the syntaxes of vendor specific implementations
why because DriverManager is one named class available in JDBC API into which if you
register Driver class name, URL, user and password, DriverManager class in-turn brings us
one Connection object.
Q) Why most of the classes given in JDBC API are interfaces?
A) Why abstract class and abstract methods are?
Abstract class forces all sub classes to implement common methods whichever are required
implementations. Only abstract method and class can do this job. That’s’ why most part of
the JDBC API is a formation of interfaces.
Method index
Connection connect(String url, Properties info)
This method takes URL argument and user name & password info as Properties
object
boolean acceptURL(String url)
This method returns boolean value true if the given URL is correct, false if any wrong
in URL
boolean jdbcComplaint()
JDBC compliance requires full support for the JDBC API and full support for SQL 92
Entry Level. It is expected that JDBC compliant drivers will be available for all the
major commercial databases.
Connection
Connection is class in-turn holds the TCP/IP connection with DB. Functions available in
this class are used to manage connection live-ness as long as JDBC application wants to
connect with DB. The period for how long the connection exists is called as Session. This
// TypeIIDriverTest,java
package com.digitalbook.j2ee.jdbc;
import java.sql.*;
public class TypeIIDriverTest
{
Connection con;
Statement stmt;
ResultSet rs;
public TypeIIDriverTest ()
{
try {
// Load driver class into default ClassLoader
Class.forName ("oracle.jdbc.driver.OracleDriver");
// Obtain a connection with the loaded driver
con =DriverManager.getConnection ("jdbc:oracle:oci8:@digital","scott","tiger");
// create a statement
st=con.createStatement();
//execute SQL query
rs =st.executeQuery ("select ename,sal from emp");
System.out.println ("Name Salary");
System.out.println ("--------------------------------");
while(rs.next())
{
System.out.println (rs.getString(1)+" "+rs.getString(2));
}
rs.close ();
stmt.close ();
con.close ();
}
catch(Exception e)
{
e.printStackTrace ();
}
Distributed Transactions
As with pooled connections, connections made via data source object that is
implemented to work with the middle tier infrastructure may participate in distributed
transactions. This gives an application the ability to involve data sources on multiple
servers in a single transaction.
The classes and interfaces used for distributed transactions are:
XADataSource
XAConnection
These interfaces are used by transaction manager; an application does not use them
directly.
The XAConnection interface is derived from the PooledConnection interface, so what
applies to a pooled connection also applies to a connection that is part of distributed
transaction. A transaction manager in the middle tier handles everything transparently. The
only change in application code is that an application cannot do anything that would
interfere with the transaction manager’s handling of the transaction. Specifically application
cannot call the methods Connection.commit or Connection.rollback and it cannot set the
connection to be in auto-commit mode.
An application does not need to do anything special to participate in a distributed
transaction. It simply creates connections to the data sources it wants to use via the
DataSource.getConnection method, just as it normally does. The transaction manager
manages the transaction behind the scenes. The XADataSource interface creates
XAConnection objects, and each XAConnection object creates an XAResource object that
the transaction manager uses to manage the connection.
Rowsets
The RowSet interface works with various other classes and interfaces behind the scenes.
These can be grouped into three categories.
1. Event Notification
o RowSetListener
A RowSet object is a JavaBeansTM component because it has properties and participates in
RowSetInternal
By implementing the RowSetInternal interface, a RowSet object gets access to its internal
state and is able to call on its reader and writer. A rowset keeps track of the values in its
current rows and of the values that immediately preceded the current ones, referred to as
the original values. A rowset also keeps track of (1) the parameters that have been set for
its command and (2) the connection that was passed to it, if any. A rowset uses the
RowSetInternal methods behind the scenes to get access to this information. An application
does not normally invoke these methods directly.
RowSetReader
A disconnected RowSet object that has implemented the RowSetInternal interface can call
on its reader (the RowSetReader object associated with it) to populate it with data. When
an application calls the RowSet.execute method, that method calls on the rowset's reader
to do much of the work. Implementations can vary widely, but generally a reader makes a
connection to the data source, reads data from the data source and populates the rowset
with it, and closes the connection. A reader may also update the RowSetMetaData object
for its rowset. The rowset's internal state is also updated, either by the reader or directly by
the method RowSet.execute.
RowSetWriter
A disconnected RowSet object that has implemented the RowSetInternal interface can call
on its writer (the RowSetWriter object associated with it) to write changes back to the
underlying data source. Implementations may vary widely, but generally, a writer will do
the following:
Make a connection to the data source
Check to see whether there is a conflict, that is, whether a value that has been changed
in the rowset has also been changed in the data source
Write the new values to the data source if there is no conflict
Close the connection
JDBC:
There are three types of statements in JDBC
Create statement : Is used to execute single SQL statements.
Prepared statement: Is used for executing parameterized quaries. Is used to run pre-compiled
SEQL Statement.
Callable statement: Is used to execute stored procedures.
Stored Procedures: Is a group of SQL statements that perform a logical unit and performs a
particular task.
Are used to encapsulate a set operations or queries t execute on data.
execute() – returns Boolean value
executeupdate( ) – returns resultset Object
executeupdate( ) – returns integer value
WebRowSetImpl - This is very similar to the CachedRowSetImpl (it is a child class) but it
also includes methods for converting the rows into an XML document and loading the
RowSet with an XML document. The XML document can come from any Stream or
Reader/Writer object. This could be especially useful for Web Services.
What are the steps for connecting to the database using JDBC
Using DriverManager:
1. Load the driver class using class.forName(driverclass) and class.forName() loads the
driver class and passes the control to DriverManager class
2. DriverManager.getConnection() creates the connection to the databse
Using DataSource.
DataSource is used instead of DriverManager in Distributed Environment with the help of
JNDI.
1. Use JNDI to lookup the DataSource from Naming service server.
3. DataSource.getConnection method will return Connection object to the database
2.Prepared Statement :For a runtime / dynamic query .Where String is a dynamic query
you want to execute
3. Callable Statement (Use prepareCall) : //For Stored procedure Callable statement, where
sql is stored procedure.
try
{
Connection conn = DriverManager.getConnection("URL",'USER"."PWD");
Don't forget all the above statements will throw the SQLException, so we need to use try
catch for the same to handle the exception.
•Servlets
•Java Server Pages (JSP)
•Tags and Tag Libraries
What’s a Servlet?
•Java’s answer to CGI programming
•Program runs on Web server and builds pages on the fly
•When would you use servlets?
–Data changes frequently e.g. weather-reports
–Page uses information from databases e.g. on-line stores
–Page is based on user-submitted data e.g search engines
–Data changes frequently e.g. weather-reports
–Page uses information from databases e.g. on-line stores
–Page is based on user-submitted data e.g search engines
•javax.servlet.Servlet
–Defines methods that all servlets must implement
•init()
•service()
•destroy()
•javax.servlet.GenericServlet
–Defines a generic, protocol-independent servlet
•javax.servlet.http.HttpServlet
–To write an HTTP servlet for use on the Web
•doGet()
•doPost()
•javax.servlet.ServletConfig
–A servlet configuration object
–Passes information to a servlet during initialization
•Servlet.getServletConfig()
•javax.servlet.ServletContext
–To communicate with the servlet container
–Contained within the ServletConfig object
•ServletConfig.getServletContext()
•javax.servlet.ServletRequest
–Provides client request information to a servlet
•javax.servlet.ServletResponse
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class Hello World extends HttpServlet {
// Handle get request
public void doGet(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException {
// request – access incoming HTTP headers and HTML form data
// response - specify the HTTP response line and headers
// (e.g. specifying the content type, setting cookies).
PrintWriter out = response.getWriter(); //out - send content to browser
out.println("Hello World");
}
}
Session Tracking
•Typical scenario – shopping cart in online store
•Necessary because HTTP is a "stateless" protocol
•Session Tracking API allows you to
–look up session object associated with current request
–create a new session object when necessary
–look up information associated with a session
–store information in a session
–discard completed or abandoned sessions
Javax.Servlet.Http Classes
HttpServletRequest Cookie
HttpServletResponse HttpServlet
HttpSession HttpSessionBindingEvent
HttpSessionContext HttpUtils
HttpSessionBindingListener -
Exceptions
ServletException
UnavailableException
SERVLETS
8. What are the differences between GET and POST service methods?
Get Method : Uses Query String to send additional information to the server.
-Query String is displayed on the client Browser.
Query String : The additional sequence of characters that are appended to the URL ia called
Query String. The length of the Query string is limited to 255 characters.
-The amount of information you can send back using a GET is restricted as URLs can only
be 1024 characters.
POST Method : The Post Method sends the Data as packets through a separate socket
connection. The complete transaction is invisible to the client. The post method is slower
compared to the Get method because Data is sent to the server as separate packates.
--You can send much more information to the server this way - and it's not restricted to
textual data either. It is possible to send files and even binary data such as serialized Java
objects!
9. What is the servlet life cycle?
In Servlet life cycles are,
init(),services(),destory().
Init( ) : Is called by the Servlet container after the servlet has ben Instantiated.
--Contains all information code for servlet and is invoked when the servlet is first loaded.
-The init( ) does not require any argument , returns a void and throws Servlet Exception.
-If init() executed at the time of servlet class loading.And init() executed only for first user.
-You can Override this method to write initialization code that needs to run only once, such as
loading a driver , initializing values and soon, Inother case you can leave normally blank.
Public void init(ServletConfig Config) throws ServletException
Service( ) : is called by the Servlet container after the init method to allow the servlet to respond
to a request.
-Receives the request from the client and identifies the type of request and deligates them to
doGet( ) or doPost( ) for processing.
Public void service(ServletRequest request,ServletResponce response) throws ServletException,
IOException
Destroy( ) : The Servlet Container calls the destroy( ) before removing a Servlet Instance from
Sevice.
-Excutes only once when the Servlet is removed from Server.
Public void destroy( )
12. If your servlet opens an OutputStream or PrintWriter, the JSP engine will throw the
following translation error:
java.lang.IllegalStateException: Cannot forward as OutputStream or Writer has already
been obtained
14. What is a better approach for enabling thread-safe servlets and JSPs? SingleThreadModel
Interface or Synchronization?
Although the SingleThreadModel technique is easy to use, and works well for low
volume sites, it does not scale well. If you anticipate your users to increase in the future,
you may be better off implementing explicit synchronization for your shared data. The key
however, is to effectively minimize the amount of code that is synchronzied so that you
take maximum advantage of multithreading.
Also, note that SingleThreadModel is pretty resource intensive from the server's
perspective. The most serious issue however is when the number of concurrent requests
exhaust the servlet instance pool. In that case, all the unserviced requests are queued until
something becomes free - which results in poor performance. Since the usage is non-
deterministic, it may not help much even if you did add more memory and increased the
size of the instance pool.
15. If you want a servlet to take the same action for both GET and POST request, what should
you do?
Simply have doGet call doPost, or vice versa.
16. Which code line must be set before any of the lines that use the PrintWriter?
setContentType() method must be set before transmitting the actual document.
19. When a servlet accepts a call from a client, it receives two objects. What are they?
ServeltRequest: which encapsulates the communication from the client to the server.
ServletResponse: which encapsulates the communication from the servlet back to the
Client.
ServletRequest and ServletResponse are interfaces defined by the javax.servlet package.
20. What information that the ServletRequest interface allows the servlet access to?
Information such as the names of the parameters passed in by the client, the protocol
(scheme) being used by the client, and the names of the remote host that made the
request and the server that received it. The input stream, ServletInputStream.Servlets use
the input stream to get data
from clients that use application protocols such as the HTTP POST and PUT methods.
21. What information that the ServletResponse interface gives the servlet methods for replying
to the client?
It Allows the servlet to set the content length and MIME type of the reply. Provides an
output stream, ServletOutputStream and a Writer through which the servlet can send the
reply data.
22. Difference between single thread and multi thread model servlet
A servlet that implements SingleThreadModel means that for every request, a single
servlet instance is created. This is not a very scalable solution as most web servers handle
multitudes of requests. A multi-threaded servlet means that one servlet is capable of
handling many requests which is the way most servlets should be implemented.
a. A single thread model for servlets is generally used to protect sensitive data ( bank account
operations ).
b. Single thread model means instance of the servlet gets created for each request recieved.
Its not thread safe whereas in multi threaded only single instance of the servlet exists for
what ever # of requests recieved. Its thread safe and is taken care by the servlet container.
c. A servlet that implements SingleThreadModel means that for every request, a single servlet
instance is created. This is not a very scalable solution as most web servers handle
multitudes of requests. A multi-threaded servlet means that one servlet is capable of
handling many requests which is the way most servlets should be implemented.
A single thread model for servlets is generally used to protect sensitive data ( bank account
operations ).
23. What is servlet context and what it takes actually as parameters?
Servlet context is an object which is created as soon as the Servlet gets initialized.Servlet
context object is contained in Servlet Config. With the context object u can get access to specific
resource (like file) in the server and pass it as a URL to be displayed as a next screen with the
help of RequestDispatcher
eg :-
ServletContext app = getServletContext();
RequestDispatcher disp;
if(b==true)
disp = app.getRequestDispatcher
("jsp/login/updatepassword.jsp");
else
disp = app.getRequestDispatcher
("jsp/login/error.jsp");
26. What is difference between forward() and sendRedirect().. ? Which one is faster then other
and which works on server?
Forward( ) : javax.Servlet.RequestDispatcher interface.
-RequestDispatcher.forward( ) works on the Server.
-The forward( ) works inside the WebContainer.
-The forward( ) restricts you to redirect only to a resource in the same web-Application.
-After executing the forward( ), the control will return back to the same method from where
the forward method was called.
-the forward( ) will redirect in the application server itself, it does’n come back to the client.
- The forward( ) is faster than Sendredirect( ) .
To use the forward( ) of the requestDispatcher interface, the first thing to do is to obtain
RequestDispatcher Object. The Servlet technology provides in three ways.
1. By using the getRequestDispatcher( ) of the javax.Servlet.ServletContext interface ,
passing a String containing the path of the other resources, path is relative to the root of
the ServletContext.
RequestDispatcher rd=request.getRequestDispatcher(“secondServlet”);
Rd.forward(request, response);
-The SendRedirect( ) will come to the Client and go back,.. ie URL appending will happen.
Response. SendRedirect( “absolute path”);
Absolutepath – other than application , relative path - same application.
When you invoke a forward request, the request is sent to another resource on the
server, without the client being informed that a different resource is going to process the
request. This process occurs completely with in the web container. When a sendRedirtect
method is invoked, it causes the web container to return to the browser indicating that a
new URL should be requested. Because the browser issues a completely new request any
object that are stored as request attributes before the redirect occurs will be lost. This extra
round trip a redirect is slower than forward.
Session : A session is a group of activities that are performed by a user while accesing a
particular website.
Session Tracking :The process of keeping track of settings across session is called session
tracking.
Hidden Form Fields : Used to keep track of users by placing hidden fields in the form.
-The values that have been entered in these fields are sent to the server when the user
submits the Form.
URL-rewriting : this is a technique by which the URL is modified to include the session ID of
a particular user and is sent back to the Client.
-The session Id is used by the client for subsequent transactions with the server.
Cookies : Cookies are small text files that are used by a webserver to keep track the Users.
A cookie is created by the server and send back to the client , the value is in the form of
Key-value pairs. Aclient can accept 20 cookies per host and the size of each cookie can be
maximum of 4 bytes each.
HttpSession : Every user who logs on to the website is autometacally associated with an
HttpSession Object.
-The Servlet can use this Object to store information about the users Session.
-HttpSession Object enables the user to maintain two types of Data.
ie State and Application.
JSP Elements
•Directive Elements : –Information about the page
–Remains same between requests
–E.g., scripting language used
•Action Elements : –Take action based on info required at request-time
•Standard
•Custom (Tags and Tag Libraries)
•Scripting Elements
–Add pieces of code to generate output based on conditions
Scriptlets
•Of form <% /* code goes here*/ %>
–Gets copied into _ jspService method of generated servlet
•Any valid Java code can go here
CODE: OUTPUT
<% int j; %> <value> 0</ value>
<% for (j = 0; j < 3; j++) {%> <value> 1</ value>
<value> <value> 2</ value>
<% out. write(""+ j); %>
</ value><% } %>
Generated Servlet…
public void _jspService(HttpServletRequest request ,
HttpServletResponse response)
throws ServletException ,IOException {
out.write("<HTML><HEAD><TITLE>Hello.jsp</TITLE></HEAD><BODY>" );
String checking = null;
String name = null;
checking = request.getParameter("catch");
if (checking != null) {
name = request.getParameter("name");
out.write("\r\n\t\t<b> Hello " );
out.print(name);
out.write("\r\n\t\t" );
}
out.write("\r\n\t\t<FORM METHOD='POST' action="
+"\"Hello.jsp\">\r\n\t\t\t<table width=\"500\" cell“……………………………..
}
}
Tags & Tag Libraries
What Is a Tag Library?
•JSP technology has a set of pre- defined tags
–<jsp: useBean …/>
•These are HTML like but…
•… have limited functionality
•Can define new tags
implements
BodyTag BodyTagSupport
Interface class
Summary
•The JSP specification is a powerful system for creating structured web content
•JSP technology allows non- programmers to develop dynamic web pages
•JSP technology allows collaboration between programmers and page designers when
building web applications
•JSP technology uses the Java programming language as the script language
•The generated servlet can be managed by directives
•JSP components can be used as the view in the MVC architecture
What are Custom tags. Why do you need Custom tags. How do you create Custom tag
1) Custom tags are those which are user defined.
2) Inorder to separate the presentation logic in a separate class rather than keeping in jsp
page we can use custom tags.
3) Step 1 : Build a class that implements the javax.servlet.jsp.tagext.Tag interface as
follows. Compile it and place it under the web-inf/classes directory (in the appropriate
package structure).
package examples;
import java.io.*; //// THIS PROGRAM IS EVERY TIME I MEAN WHEN U REFRESH THAT
PARTICULAR CURRENT DATE THIS CUSTOM TAG WILL DISPLAY
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public class ShowDateTag implements Tag {
private PageContext pageContext;
private Tag parent;
public int doStartTag() throws JspException {
return SKIP_BODY; }
public int doEndTag() throws JspException {
try {
pageContext.getOut().write("" + new java.util.Date());
} catch (IOException ioe) {
throw new JspException(ioe.getMessage());
}
return EVAL_PAGE; }
public void release() {
}
public void setPageContext(PageContext page) {
this.pageContext = page;
}
public void setParent(Tag tag) {
this.parent = tag;
}
What are the implicit objects in JSP & differences between them
There are nine implicit objects in JSP.
1. request : The request object represents httprequest that are trigged by service( )
invocation. javax.servlet
4. session : the session object represents the session created by the current user.
javax.Servlet.http.HttpSession
5. application : the application object represents servlet context , obtained from servlet
configaration . javax.Servlet.ServletContext
6. out : the out object represents to write the out put stream .
javax.Servlet.jsp.jspWriter
7. Config :the config object represents the servlet config interface from this page,and has
scope attribute. javax.Servlet.ServletConfig
8. page : The object is th eInstance of page implementation servlet class that are
processing the current request.
java.lang.Object
9. exception : These are used for different purposes and actually u no need to create these
objects in JSP. JSP container will create these objects automatically.
java.lang.Throwable
Example:
If i want to put my username in the session in JSP.
What is jsp:usebean. What are the scope attributes & difference between these attributes
page, request, session, application
What is difference between scriptlet and expression
With expressions in JSP, the results of evaluating the expression are converted to a
string and directly included within the output page. Typically expressions are used to
display simple values of variables or return values by invoking a bean's getter methods. JSP
expressions begin within tags and do not include semicolons:
But scriptlet can contain any number of language statements, variable or method
declarations, or expressions that are valid in the page scripting language. Within scriptlet
tags, you can declare variables or methods to use later in the file, write expressions valid in
the page scripting language,use any of the JSP mplicit objects or any object declared with a
What is Declaration
Declaration is used in JSP to declare methods and variables.To add a declaration, you must
use the sequences to enclose your declarations.
How do I have the JSP-generated servlet subclass my own custom servlet class, instead of
the default?
One should be very careful when having JSP pages extend custom servlet classes as
opposed to the default one generated by the JSP engine. In doing so, you may lose out on
any advanced optimization that may be provided by the JSPengine. In any case, your new
superclass has to fulfill the contract with the JSPngine by: Implementing the HttpJspPage
interface, if the protocol used is HTTP, or implementing JspPage otherwise Ensuring that all
the methods in the Servlet interface are declared final Additionally, your servlet superclass
also needs to do the following:
The service() method has to invoke the _jspService() method
The init() method has to invoke the jspInit() method
The destroy() method has to invoke jspDestroy()
If any of the above conditions are not satisfied, the JSP engine may throw a translation
error. Once the superclass has been developed, you can have your JSP extend it as follows:
<%@ page extends="packageName.ServletName" %<
How can I set a cookie and delete a cookie from within a JSP page?
A cookie, mycookie, can be deleted using the following scriptlet:
<%
//creating a cookie
Cookie mycookie = new Cookie("aName","aValue");
response.addCookie(mycookie);
//delete a cookie
Cookie killMyCookie = new Cookie("mycookie", null);
killMyCookie.setMaxAge(0);
killMyCookie.setPath("/");
response.addCookie(killMyCookie);
%>
How can I enable session tracking for JSP pages if the browser has disabled cookies?
We know that session tracking uses cookies by default to associate a session
identifier with a unique user. If the browser does not support cookies, or if cookies are
disabled, you can still enable session tracking using URL rewriting. URL rewriting essentially
includes the session ID within the link itself as a name/value pair. However, for this to be
effective, you need to append the session ID for each and every link that is part of your
servlet response. Adding the session ID to a link is greatly simplified by means of of a
couple of methods: response.encodeURL() associates a session ID with a given URL, and if
you are using redirection, response.encodeRedirectURL() can be used by giving the
redirected URL as input. Both encodeURL() and encodeRedirectedURL() first determine
whether cookies are supported by the browser; if so, the input URL is returned unchanged
since the session ID will be persisted as a cookie.
Consider the following example, in which two JSP files, say hello1.jsp and hello2.jsp,
interact with each other. Basically, we create a new session within hello1.jsp and place an
object within this session. The user can then traverse to hello2.jsp by clicking on the link
present within the page.Within hello2.jsp, we simply extract the object that was earlier
placed in the session and display its contents. Notice that we invoke the encodeURL() within
hello1.jsp on the link used to invoke hello2.jsp; if cookies are disabled, the session ID is
automatically appended to the URL, allowing hello2.jsp to still retrieve the session object.
Try this example first with cookies enabled. Then disable cookie support, restart the
brower, and try again. Each time you should see the maintenance of the session across
pages. Do note that to get this example to work with cookies disabled at the browser, your
JSP engine has to support URL rewriting.
hello1.jsp
<%@ page session="true" %>
<%
Integer num = new Integer(100);
session.putValue("num",num);
How do I prevent the output of my JSP or Servlet pages from being cached by the browser?
You will need to set the appropriate HTTP header attributes to prevent the dynamic
content output by the JSP page from being cached by the browser. Just execute the
following scriptlet at the beginning of your JSP pages to prevent them from being cached at
the browser. You need both the statements to take care of some of the older browser
versions.
<%
response.setHeader("Cache-Control","no-store"); //HTTP 1.1
response.setHeader("Pragma","no-cache"); //HTTP 1.0
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server
%>
<%
String item = request.getParameter("item");
int howMany = new Integer(request.getParameter("units")).intValue();
%>
or
<%= request.getParameter("item") %>
How do you prevent the Creation of a Session in a JSP Page and why?
By default, a JSP page will automatically create a session for the request if one does not
exist. However, sessions consume resources and if it is not necessary to maintain a session,
one should not be created. For example, a marketing campaign may suggest the reader
visit a web page for more information. If it is anticipated that a lot of traffic will hit that
page, you may want to optimize the load on the machine by not creating useless sessions.
What is the page directive is used to prevent a JSP page from automatically creating a
session:
<%@ page session="false">
Is it possible to share an HttpSession between a JSP and EJB? What happens when I
change a value in the HttpSession from inside an EJB?
You can pass the HttpSession as parameter to an EJB method, only if all objects in
session are serializable.This has to be consider as "passed-by-value", that means that it's
read-only in the EJB. If anything is altered from inside the EJB, it won't be reflected back to
the HttpSession of the Servlet Container.The "pass-byreference" can be used between EJBs
Remote Interfaces, as they are remote references. While it IS possible to pass an
HttpSession as a parameter to an EJB object, it is considered to be "bad practice (1)" in
terms of object oriented design. This is because you are creating an unnecessary coupling
A couple of important points to note. Although you would have to name your serialized file
"filename.ser", you only indicate "filename" as the value for the beanName attribute. Also,
you will have to place your serialized file within the WEB-INFjspbeans directory for it to be
located by the JSP engine.
Can you make use of a ServletOutputStream object from within a JSP page?
No. You are supposed to make use of only a JSPWriter object (given to you in the form of
the implicit object out) for replying to clients. A JSPWriter can be viewed as a buffered
version of the stream object returned by response.getWriter(), although from an
implementational perspective, it is not. A page author can always disable the default
buffering for any page using a page directive as:
<%@ page buffer="none" %>
1. Introduction to MVC
a. Overview of MVC Architecture 63
b. Applying MVC in Servlets and JSP
c. View on JSP
d. JSP Model 1 Architecture
e. JSP Model 2 Architecture
f. Limitation in traditional MVC approach
g. MVC Model 2 Architecture
h. The benefits
i. Application flow
2. Overview of Struts Framework 66
a. Introduction to Struts Framework
b. Struts Architecture
c. Front Controller Design Pattern
d. Controller servlet - ActionServlet
e. Action objects
f. Action Form objects
g. Action mappings
h. Configuring web.xml file and struts-config.xml file
5. Advanced Struts
a. Accessing Application Resource File
b. Use of Tokens
c. Accessing Indexed properties
d. Forward Vs Redirect
e. Dynamic creating Action Forwards
6. Struts 1.1
a. DynaActionForm
b. DynaValidatorActionForm
Struts : Struts is an open source framework from Jakartha Project designed for developing
the web applications with Java SERVLET API and Java Server Pages Technologies.Struts
conforms the Model View Controller design pattern. Struts package provides unified
reusable components (such as action servlet) to build the user interface that can be applied
to any web connection. It encourages software development following the MVC design
pattern.
Overview of MVC Architecture
The MVC design pattern divides applications into three components:
The Model maintains the state and data that the application represents .
The View allows the display of information about the model to the user.
The Controller allows the user to manipulate the application .
Users
Secur
UI Components
y
t
i
UI Process Components
l management
Commun
Opera
ona
Service Interfaces
on
ca
t
t
i
i
i
Below you will find one example on registration form processing using MVC in Servlets and
JSP:
Controller Servlet
If() Reg_mast
User er
Reg JSP If()
Confirm.jsp Error.jsp
1. In the above application Reg.jsp act as view accepts I/P from client and submits to
Controller Servlet.
2. Controller Servlet validates the form data, if valid, stores the data into DB
3. Based on the validation and DB operations Controller Servlet decides to respond
either Confirm.jsp or Error.jsp to client’s browser.
4. When the Error.jsp is responded, the page must include all the list of errors with
detailed description.
5. The above shown application architecture is the model for MVC.
6. IF MVC Model 2 wants to be implemented in your application business logic and
model operations must be separated from controller program.
View on JSP
The early JSP specification follows two approaches for building applications using
JSP technology. These two approaches are called as JSP Model 1 and JSP Model 2
architectures.
5
You have Downloaded this file from atrchowdary Yahoo Group 65
Beans
1. Client submits login request to servlet application
2. Servlet application acts as controller it first decides to request validator another
servlet program which is responsible for not null checking (business rule)
3. control comes to controller back and based on the validation response, if the
response is positive, servlet controller sends the request to model
4. Model requests DB to verify whether the database is having the same user name
and password, If found login operation is successful
5. Beans are used to store if any data retrieved from the database and kept into
HTTPSession
6. Controller then gives response back to response JSP (view) which uses the bean
objects stored in HTTPSession object
7. and prepares presentation response on to the browser
For the Model, Struts can interact with standard data access technologies, like JDBC and
EJB, as well as most any third-party packages, like Hibernate, iBATIS, or Object
Relational Bridge.
For the View, Struts works well with Java Server Pages, including JSTL and JSF, as well
as Velocity Templates, XSLT, and other presentation systems.
For Controller, ActionServlet and ActionMapping - The Controller portion of the
application is focused on receiving requests from the client deciding what business logic
function is to be performed, and then delegating responsibility for producing the next
phase of the user interface to an appropriate View component. In Struts, the primary
component of the Controller is a servlet of class ActionServlet. This servlet is configured
by defining a set of ActionMappings. An ActionMapping defines a path that is matched
against the request URI of the incoming request, and usually specifies the fully qualified
class name of an Action class. Actions encapsulate the business logic, interpret the
outcome, and ultimately dispatch control to the appropriate View component to create
the response.
The Struts project was launched in May 2000 by Craig McClanahan to provide a standard
MVC framework to the Java community. In July 2001.
In the MVC design pattern, application flow is mediated by a central Controller. The
Controller delegates’ requests - in our case, HTTP requests - to an appropriate handler. The
handlers are tied to a Model, and each handler acts as an adapter between the request and
the Model. The Model represents, or encapsulates, an application's business logic or state.
Control is usually then forwarded back through the Controller to the appropriate View. The
forwarding can be determined by consulting a set of mappings, usually loaded from a
database or configuration file. This provides a loose coupling between the View and Model,
which can make applications significantly easier to create and maintain.
Request.jsp J2EE
Struts- Component
Action config.xml
Servlet (EJB)
ActionForm
Success
Response DB
Action
Error
Response Legac
Front Controller y code
Context
The presentation-tier request handling mechanism must control and coordinate
processing of each user across multiple requests. Such control mechanisms may be
managed in either a centralized or decentralized manner.
Problem
The system requires a centralized access point for presentation-tier request handling to
support the integration of system services, content retrieval, view management, and
navigation. When the user accesses the view directly without going through a centralized
mechanism,
Two problems may occur:
Each view is required to provide its own system services, often resulting in duplicate
code.
View navigation is left to the views. This may result in commingled view content and
view navigation.
Additionally, distributed control is more difficult to maintain, since changes will often need
to be made in numerous places.
Solution :
Use a controller as the initial point of contact for handling a request. The controller
manages the handling of the request, including invoking security services such as
authentication and authorization, delegating business processing, managing the choice of
an appropriate view, handling errors, and managing the selection of content creation
strategies.
The controller provides a centralized entry point that controls and manages Web
request handling. By centralizing decision points and controls, the controller also helps
reduce the amount of Java code, called scriptlets, embedded in the JavaServer Pages (JSP)
page.
Centralizing control in the controller and reducing business logic in the view promotes
code reuse across requests. It is a preferable approach to the alternative-embedding code
in multiple views-because that approach may lead to a more error-prone, reuse-by-copy-
and-paste environment.
Controller : The controller is the initial contact point for handling all requests in the
system. The controller may delegate to a helper to complete authentication and
authorization of a user or to initiate contact retrieval.
Dispatcher :
A dispatcher is responsible for view management and navigation, managing the
choice of the next view to present to the user, and providing the mechanism for vectoring
control to this resource.
A dispatcher can be encapsulated within a controller or can be a separate component
working in coordination. The dispatcher provides either a static dispatching to the view or a
more sophisticated dynamic dispatching mechanism.
Action class
The Action class defines two methods that could be executed depending on your servlet
environment:
Since the majority of Struts projects are focused on building web applications, most
projects will only use the "HttpServletRequest" version. A non-HTTP execute() method has
been provided for applications that are not specifically geared towards the HTTP protocol.
The goal of an Action class is to process a request, via its execute method, and return an
ActionForward object that identifies where control should be forwarded (e.g. a JSP, Tile
definition, Velocity template, or another Action) to provide the appropriate response. In the
MVC/Model 2 design pattern, a typical Action class will often implement logic like the
following in its execute method:
Validate the current state of the user's session (for example, checking that the user
has successfully logged on). If the Action class finds that no logon exists, the
request can be forwarded to the presentation page that displays the username and
password prompts for logging on. This could occur because a user tried to enter an
application "in the middle" (say, from a bookmark), or because the session has
timed out, and the servlet container created a new one.
If validation is not complete, validate the form bean properties as needed. If a
problem is found, store the appropriate error message keys as a request attribute,
and forward control back to the input form so that the errors can be corrected.
You have Downloaded this file from atrchowdary Yahoo Group 70
Perform the processing required to deal with this request (such as saving a row into
a database). This can be done by logic code embedded within the Action class itself,
but should generally be performed by calling an appropriate method of a business
logic bean.
Update the server-side objects that will be used to create the next page of the user
interface (typically request scope or session scope beans, depending on how long
you need to keep these items available).
Return an appropriate ActionForward object that identifies the presentation page to
be used to generate this response, based on the newly updated beans. Typically,
you will acquire a reference to such an object by calling findForward on either the
ActionMapping object you received (if you are using a logical name local to this
mapping), or on the controller servlet itself (if you are using a logical name global to
the application).
In Struts 1.0, Actions called a perform method instead of the now-preferred execute
method. These methods use the same parameters and differ only in which exceptions they
throw. The elder perform method throws SerlvetException and IOException. The new
execute method simply throws Exception. The change was to facilitate the Declarative
Exception handling feature introduced in Struts 1.1.
The perform method may still be used in Struts 1.1 but is deprecated. The Struts 1.1
method simply calls the new execute method and wraps any Exception thrown as a
ServletException.
Don't throw it, catch it! - Ever used a commercial website only to have a stack trace or
exception thrown in your face after you've already typed in your credit card number and
clicked the purchase button? Let's just say it doesn't inspire confidence. Now is your
chance to deal with these application errors - in the Action class. If your application specific
code throws expections you should catch these exceptions in your Action class, log them in
your application's log (servlet.log("Error message", exception)) and return the appropriate
ActionForward.
It is wise to avoid creating lengthy and complex Action classes. If you start to embed too
much logic in the Action class itself, you will begin to find the Action class hard to
understand, maintain, and impossible to reuse. Rather than creating overly complex Action
classes, it is generally a good practice to move most of the persistence, and "business
logic" to a separate application layer. When an Action class becomes lengthy and
procedural, it may be a good time to refactor your application architecture and move some
of this logic to another conceptual layer; otherwise, you may be left with an inflexible
application which can only be accessed in a web-application environment. Struts should be
viewed as simply the foundation for implementing MVC in your applications. Struts provides
you with a useful control layer, but it is not a fully featured platform for building MVC
applications, soup to nuts.
The MailReader example application included with Struts stretches this design principle
somewhat, because the business logic itself is embedded in the Action classes. This should
be considered something of a bug in the design of the example, rather than an intrinsic
feature of the Struts architecture, or an approach to be emulated. In order to demonstrate,
in simple terms, the different ways Struts can be used, the MailReader application does not
always follow best practices.
o type - Fully qualified Java class name of the Action implementation class used by this
mapping.
o name - The name of the form bean defined in the config file that this action will use.
o path - The request URI path that is matched to select this mapping. See below for
examples of how matching works and how to use wildcards to match multiple request
URIs.
o unknown - Set to true if this action should be configured as the default for this application,
to handle all requests not handled by another action. Only one action can be defined as a
default within a single application.
o validate - Set to true if the validate method of the action associated with this mapping
should be called.
o forward - The request URI path to which control is passed when this mapping is invoked.
This is an alternative to declaring a type property.
The controller uses an internal copy of this document to parse the configuration; an
Internet connection is not required for operation.
The outermost XML element must be <struts-config>. Inside of the <struts-config>
element, there are three important elements that are used to describe your actions:
<form-beans>
<global-forwards>
<action-mappings>
<form-beans>
This section contains your form bean definitions. Form beans are descriptors that are used
to create ActionForm instances at runtime. You use a <form-bean> element for each form
bean, which has the following important attributes:
name: A unique identifier for this bean, which will be used to reference it in
corresponding action mappings. Usually, this is also the name of the request or
session attribute under which this form bean will be stored.
type: The fully-qualified Java classname of the ActionForm subclass to use with this
form bean.
<global-forwards>
This section contains your global forward definitions. Forwards are instances of the
ActionForward class returned from an ActionForm's execute method. These map logical
names to specific resources (typically JSPs), allowing you to change the resource without
For a complete description of the elements that can be used with the action element, see
the Struts Configuration DTD and the ActionMapping documentation.
If not specified, the default forwardPattern is consistent with the previous behavior
of forwards. [$M$P] (optional)
inputForward - Set to true if you want the input attribute of <action> elements to be
the name of a local or global ActionForward, which will then be used to calculate the
ultimate URL. Set to false to treat the input parameter of <action> elements as a
module-relative path to the resource to be used as the input form. [false] (optional)
locale - Set to true if you want a Locale object stored in the user's session if not
already present. [true] (optional)
maxFileSize - The maximum size (in bytes) of a file to be accepted as a file upload.
Can be expressed as a number followed by a "K", "M", or "G", which are interpreted
to mean kilobytes, megabytes, or gigabytes, respectively. [250M] (optional)
multipartClass - The fully qualified Java class name of the multipart request handler
class to be used with this module.
[org.apache.struts.upload.CommonsMultipartRequestHandler] (optional)
nocache - Set to true if you want the controller to add HTTP headers for defeating
caching to every response from this module. [false] (optional)
pagePattern - Replacement pattern defining how the page attribute of custom tags
using it is mapped to a context-relative URL of the corresponding resource. This
value may consist of any combination of the following:
o $M - Replaced by the module prefix of this module.
o $P - Replaced by the "path" attribute of the selected <forward> element.
o $$ - Causes a literal dollar sign to be rendered.
o $x - (Where "x" is any character not defined above) Silently swallowed,
reserved for future use.
If not specified, the default pagePattern is consistent with the previous behavior of
URL calculation. [$M$P] (optional)
processorClass - The fully qualified Java class name of the RequestProcessor
subclass to be used with this module. [org.apache.struts.action.RequestProcessor]
(optional)
tempDir - Temporary working directory to use when processing file uploads. [{the
directory provided by the servlet container}]
This example uses the default values for several controller parameters. If you only want
default behavior you can omit the controller section altogether.
<controller
processorClass="org.apache.struts.action.RequestProcessor"
debug="0"
contentType="text/html"/>;
PlugIn Configuration
Struts PlugIns are configured using the <plug-in> element within the Struts configuration
file. This element has only one valid attribute, 'className', which is the fully qualified name
of the Java class which implements the org.apache.struts.action.PlugIn interface.
For PlugIns that require configuration themselves, the nested <set-property> element is
available.
This is an example using the Tiles plugin:
<plug-in className="org.apache.struts.tiles.TilesPlugin" >
<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml"/>
</plug-in>
In Struts 1.2.0, the GenericDataSource has been removed, and it is recommended that
you use the Commons BasicDataSource or other DataSource implementation instead. In
practice, if you need to use the DataSource manager, you should use whatever DataSource
implementation works best with your container or database.
For examples of specifying a data-sources element and using the DataSource with an
Action, see the Accessing a Database HowTo.
Configuring your application for modules
Very little is required in order to start taking advantage of the Struts module feature. Just
go through the following steps:
1. Prepare a config file for each module.
2. Inform the controller of your module.
3. Use actions to refer to your pages.
Module Configuration Files
Back in Struts 1.0, a few "boot-strap" options were placed in the web.xml file, and the bulk
of the configuration was done in a single struts-config.xml file. Obviously, this wasn't ideal
for a team environment, since multiple users had to share the same configuration file.
In Struts 1.1, you have two options: you can list multiple struts-config files as a
comma-delimited list, or you can subdivide a larger application into modules.
With the advent of modules, a given module has its own configuration file. This means each
team (each module would presumably be developed by a single team) has their own
configuration file, and there should be a lot less contention when trying to modify it.
Informing the Controller
In struts 1.0, you listed your configuration file as an initialization parameter to the
action servlet in web.xml. This is still done in 1.1, but it's augmented a little. In order to tell
the Struts machinery about your different modules, you specify multiple config initialization
parameters, with a slight twist. You'll still use "config" to tell the action servlet about your
"default" module, however, for each additional module, you will list an initialization
parameter named "config/module", where module is the name of your module (this gets
used when determining which URIs fall under a given module, so choose something
meaningful!). For example:
...
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/conf/struts-default.xml</param-value>
</init-param>
<init-param>
<param-name>config/module1</param-name>
<param-value>/WEB-INF/conf/struts-module1.xml</param-value>
</init-param>
...
This says I have two modules. One happens to be the "default" module, which has no
"/module" in it's name, and one named "module1" (config/module1). I've told the controller
it can find their respective configurations under /WEB-INF/conf (which is where I put all my
configuration files). Pretty simple!
(My struts-default.xml would be equivalent to what most folks call struts-config.xml. I just
like the symmetry of having all my Struts module files being named struts-<module>.xml)
If you'd like to vary where the pages for each module is stored, see the forwardPattern
setting for the Controller.
Switching Modules
There are two basic methods to switching from one module to another. You can either
use a forward (global or local) and specify the contextRelative attribute with a value of true,
or you can use the built-in org.apache.struts.actions.SwitchAction.
Here's an example of a global forward:
...
You have Downloaded this file from atrchowdary Yahoo Group 80
<struts-config>
...
<global-forwards>
<forward name="toModuleB"
contextRelative="true"
path="/moduleB/index.do"
redirect="true"/>
...
</global-forwards>
...
</struts-config>
You could do the same thing with a local forward declared in an ActionMapping:
...
<struts-config>
...
<action-mappings>
...
<action ... >
<forward name="success"
contextRelative="true"
path="/moduleB/index.do"
redirect="true"/>
</action>
...
</action-mappings>
...
</struts-config>
Finally, you could use org.apache.struts.actions.SwitchAction, like so:
...
<action-mappings>
<action path="/toModule"
type="org.apache.struts.actions.SwitchAction"/>
...
</action-mappings>
...
Now, to change to ModuleB, we would use a URI like this:
http://localhost:8080/toModule.do?prefix=/moduleB&page=/index.do
If you are using the "default" module as well as "named" modules (like "/moduleB"), you
can switch back to the "default" module with a URI like this:
http://localhost:8080/toModule.do?prefix=&page=/index.do
That's all there is to it! Happy module-switching!
The Web Application Deployment Descriptor
The final step in setting up the application is to configure the application deployment
descriptor (stored in file WEB-INF/web.xml) to include all the Struts components that are
required. Using the deployment descriptor for the example application as a guide, we see
that the following entries need to be created or modified.
Configure the Action Servlet Instance
Add an entry defining the action servlet itself, along with the appropriate initialization
parameters. Such an entry might look like this:
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>
org.apache.struts.action.ActionServlet
</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>
/WEB-INF/struts-config.xml
</param-value>
You have Downloaded this file from atrchowdary Yahoo Group 81
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
The initialization parameters supported by the controller servlet are described below.
(You can also find these details in the Javadocs for the ActionServlet class.) Square
brackets describe the default values that are assumed if you do not provide a value for that
initialization parameter.
config - Context-relative path to the XML resource containing the configuration information
for the default module. This may also be a comma-delimited list of configuration files. Each
file is loaded in turn, and its objects are appended to the internal
data structure. [/WEB-INF/struts-config.xml].
WARNING - If you define an object of the same name in more than one configuration file, the
last one loaded quietly wins.
config/${module} - Context-relative path to the XML resource containing the configuration
information for the application module that will use the specified prefix (/${module}). This
can be repeated as many times as required for multiple application modules. (Since Struts
1.1)
convertNull - Force simulation of the Struts 1.0 behavior when populating forms. If set to
true, the numeric Java wrapper class types (like java.lang.Integer) will default to null
(rather than 0). (Since Struts 1.1) [false]
rulesets - Comma-delimited list of fully qualified classnames of additional
org.apache.commons.digester.RuleSet instances that should be added to the Digester that
will be processing struts-config.xml files. By default, only the RuleSet for the standard
configuration elements is loaded. (Since Struts 1.1)
validating - Should we use a validating XML parser to process the configuration file
(strongly recommended)? [true]
WARNING - Struts will not operate correctly if you define more than one <servlet> element
for a controller servlet, or a subclass of the standard controller servlet class. The controller
servlet MUST be a web application wide singleton.
Configure the Action Servlet Mapping
Note: The material in this section is not specific to Struts. The configuration of servlet
mappings is defined in the Java Servlet Specification. This section describes the most
common means of configuring a Struts application.
There are two common approaches to defining the URLs that will be processed by the
controller servlet -- prefix matching and extension matching. An appropriate mapping entry
for each approach will be described below.
Prefix matching means that you want all URLs that start (after the context path part) with a
particular value to be passed to this servlet. Such an entry might look like this:
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>/do/*</url-pattern>
</servlet-mapping>
which means that a request URI to match the /logon path described earlier might look like
this:
http://www.mycompany.com/myapplication/do/logon
where /myapplication is the context path under which your application is deployed.
Extension mapping, on the other hand, matches request URIs to the action servlet based on
the fact that the URI ends with a period followed by a defined set of characters. For
example, the JSP processing servlet is mapped to the *.jsp pattern so that it is called to
process every JSP page that is requested. To use the *.do extension (which implies "do
something"), the mapping entry would look like this:
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
and a request URI to match the /logon path described earlier might look like this:
http://www.mycompany.com/myapplication/logon.do
WARNING - Struts will not operate correctly if you define more than one <servlet-
mapping> element for the controller servlet.
Note that you must use the full uri defined in the various struts tlds so that the container
knows where to find the tag's class files. You don't have to alter your web.xml file or copy
tlds into any application directories.
You have Downloaded this file from atrchowdary Yahoo Group 83
Add Struts Components To Your Application
To use Struts, you must copy the .tld files that you require into your WEB-INF directory,
and copy struts.jar (and all of the commons-*.jar files) into your WEB-INF/lib directory.
Struts
The core of the Struts framework is a flexible control layer based on standard
technologies like Java Servlets, JavaBeans, ResourceBundles, and XML, as well as various
Jakarta Commons packages. Struts encourages application architectures based on the
Model 2 approach, a variation of the classic Model-View-Controller (MVC) design paradigm.
Struts provides its own Controller component and integrates with other technologies
to provide the Model and the View. For the Model, Struts can interact with standard data
access technologies, like JDBC and EJB, as well as most any third-party packages, like
Hibernate, iBATIS, or Object Relational Bridge. For the View, Struts works well with
JavaServer Pages, including JSTL and JSF, as well as Velocity Templates, XSLT, and other
presentation systems.
The Struts framework provides the invisible underpinnings every professional web
application needs to survive. Struts helps you create an extensible development
environment for your application, based on published standards and proven design
patterns.
What is DispatchAction
The DispatchAction class is used to group related actions into one class. DispatchAction
is an abstract class, so you must override it to use it. It extends the Action class.
It should be noted that you dont have to use the DispatchAction to group multiple actions
into one Action class.
You could just use a hidden field that you inspect to delegate to member() methods inside
of your action.
What is Struts?
Struts is a web page development framework and an open source software that helps
developers build web applications quickly and easily. Struts combines Java Servlets, Java
Server Pages, custom tags, and message resources into a unified framework. It is a
cooperative, synergistic platform, suitable for development teams, independent developers,
and everyone between.
What helpers in the form of JSP pages are provided in Struts framework?
--struts-html.tld
--struts-bean.tld
--struts-logic.tld
Is Struts efficient?
--The Struts is not only thread-safe but thread-dependent(instantiates each Action once
and allows other requests to be threaded through the original object.
What is Jakarta Struts Framework? - Jakarta Struts is open source implementation of MVC
(Model-View-Controller) pattern for the development of web based applications. Jakarta
Struts is robust architecture and can be used for the development of application of any size.
Struts framework makes it much easier to design scalable, reliable Web applications with
Java.
What is ActionServlet?
The class org.apache.struts.action.ActionServlet is the called the ActionServlet. In the
the Jakarta Struts Framework this class plays the role of controller. All the requests to the
server goes through the controller. Controller is responsible for handling all the requests.
How you will make available any Message Resources Definitions file to the Struts
Framework Environment?
Message Resources Definitions file are simple .properties files and these files contains the
messages that can be used in the struts project. Message Resources Definitions files can be
added to the struts-config.xml file through <message-resources /> tag.
Example:
<message-resources parameter=”MessageResources” />
1. import javax.servlet.http.HttpServletRequest;
2. import javax.servlet.http.HttpServletResponse;
3. import org.apache.struts.action.Action;
4. import org.apache.struts.action.ActionForm;
5. import org.apache.struts.action.ActionForward;
6. import org.apache.struts.action.ActionMapping;
7.
8. public class TestAction extends Action
9. {
10. public ActionForward execute(
11. ActionMapping mapping,
12. ActionForm form,
13. HttpServletRequest request,
14. HttpServletResponse response) throws Exception
15. {
16. return mapping.findForward(\"testAction\");
17. }
18. }
What is ActionForm?
You have Downloaded this file from atrchowdary Yahoo Group 88
An ActionForm is a JavaBean that extends org.apache.struts.action.ActionForm.
ActionForm maintains the session state for web application and the ActionForm object is
automatically populated on the server side with data entered from a form on the client
side.
How you will display validation fail errors on jsp page? The following tag displays all the
errors:
<html:errors/>
How you will enable front-end validation based on the xml in validation.xml? The
<html:javascript> tag to allow front-end validation based on the xml in validation.xml.
For example the code: <html:javascript formName=”logonForm”
dynamicJavascript=”true” staticJavascript=”true” /> generates the client side java
script for the form “logonForm” as defined in the validation.xml file. The
<html:javascript> when added in the jsp file generates the client site validation script.
Agenda
•What is an EJB
•Bean Basics
•Component Contract
•Bean Varieties
–Session Beans
–Entity Beans
–Message Driven Beans
What is an EJB ?
Bean is a component
•A server-side component
•Contains business logic that operates on some temporary data or permanent database
•Is customizable to the target environment
•Is re-usable
•Is truly platform-independent
JSP
Servlets Bea
ns
HTML http rmi
client J2EE Server Java Client
EJB
EJB Component
Component
server
server
The Architecture Scenario
Application Responsibilities
-Create individual business and web components.
-Assemble these components into an application.
-Deploy application on an application server.
-Run application on target environment.
EJB Architecture Roles : Appointed for Responsibilities
•Six roles in application development and deployment life cycle
–Bean Provider
–Application Assembler
–Server Provider
–Container Provider
–Deployer
–System Administrator
•Each role performed by a different party.
•Product of one role compatible with another.
Component Server
Client
Component Contract :
•Client-view contract
Bean Instance
•Component contract
•EJB-jar file
Component
Contract
Client Container
You have Downloaded this file from atrchowdary Yahoo Group 92
Client View
Contract Component Server
Bean
Bean class
class files,
files, interfaces
interfaces EJB-jar
Deployment
Deployment descriptor
descriptor
Client-view contract :
•Contract between client and container
•Uniform application development model for greater re-use of components
•View sharing by local and remote programs
•The Client can be:
–another EJB deployed in same or another container
–a Java program, an applet or a Servlet
–mapped to non-Java clients like CORBA clients
Component contract :
•Between an EJB and the container it is hosted by
•This contract needs responsibilities to be shared by:
–the bean provider
–the container provider
Container provider’s
responsibilities
Bean provider’s
responsibilities
Bean Varieties
Three Types of Beans:
Session Beans - Short lived and last during a session.
Entity Beans - Long lived and persist throughout.
Message Driven Beans – Asynchronous Message Consumers
Asynchronous.
Session Beans
•A session object is a non-persistent object that implements some business logic running
on the server.
•Executes on behalf of a single client.
•Can be transaction aware.
•Does not represent directly shared data in the database, although it may access and
update such data.
•Is relatively short-lived.
•Is removed when the EJB container crashes. The client has to re-establish a new session
object to continue computation
Types of Session Beans
•There are two types of session beans:
– Stateless
– Stateful
Message Consumers
IntialContext Class :
Lookup( ) -> Searches and locate the distributed Objects.
Session Bean’s Local Home Interface :
•object that implements is called a session EJBLocalHome object.
•Create a new session object.
•Remove a session object.
Session Bean’s Remote Home Interface
•object that implements is called a session EJBHome object.
•Create a session object
•Remove a session object
Session Bean’s Local Interface
•Instances of a session bean’s remote interface are called session EJBObjects
•business logic methods of the object.
Session Bean’s Local Home Interface
•instances of a session bean’s local interface are called session EJBLocalObjects
•business logic methods of the object
Creating an EJB Object
•Home Interface defines one or more create() methods
•Arguments of the create methods are typically used to initialize the state of the created
session object
public interface CartHome extends javax.ejb.EJBHome
{
Cart create(String customerName, String account)
throws RemoteException, BadAccountException,
CreateException;
}
cartHome.create(“John”, “7506”);
EJBObject or EJBLocalObject
•Client never directly accesses instances of a Session Bean’s class
•Client uses Session Bean’s Remote Interface or Remote Home Interface to access its
instance
•The class that implements the Session Bean’s Remote Interface or Remote Home Interface
is provided by the container.
Session Object Identity
•Session Objects are meant to be private resources of the client that created them
•Session Objects, from the client’s perspective, appear anonymous
•Session Bean’s Home Interface must not define finder methods
Session Object Identity
•Stateful Session Beans :
–A stateful session object has a unique identity that is assigned by the container at the
time of creation.
–A client can determine if two object references refer to the same session object by
invoking the isIdentical(EJBObject otherEJBObject) method on one of the references.
•Stateless Session Beans :
–All session objects of the same stateless session bean, within the same home have the
same object identity assigned by the container.
–isIdentical(EJBObject otherEJBObject) method always returns true.
Entity Beans
Long Live Entity Beans!
•A component that represents an object-oriented view of some entities stored in a
persistent storage like a database or an enterprise application.
•From its creation until its destruction, an entity object lives in a container.
•Transparent to the client, the Container provides security, concurrency, transactions,
persistence, and other services to support the Entity Bean’s functioning
–Cainer Managed Persistence versus Bean Managed Persistence
•Multiple clients can access an entity object concurrently
•Container hosting the Entity Bean synchronizes access to the entity object’s state using
transactions
•Each entity object has an identity which usually survives a transaction crash
•Object identity is implemented by the container with help from the enterprise bean class
•Multiple enterprise beans can be deployed in a Container
Remote Clients :
•Accesses an entity bean through the entity bean’s remote and remote home interfaces
•Implements EJBObject and EJBHome Interfaces
•Location Independent
•Potentially Expensive, Network Latency
•Useful for coarse grained component access
Local Clients :
•Local client is a client that is collocated with the entity bean and which may be tightly
coupled to the bean.
•Implements EJBLocalObject and EJBLocalHome Interfaces
•Same JVM
Create Methods :
•Entity Bean’s Remote Home Interface can define multiple create() methods, each defining
a way of creating an entity object
•Arguments of create() initialize the state of the entity object
•Return type of a create() method is Entity Bean’s Remote Interface
•The throws clause of every create() method includes the java.rmi.RemoteException and
javax.ejb.CreateException
finder Methods
•Entity Bean’s Home Interface defines many finder methods
•Name of each finder method starts with the prefix “find”
•Arguments of a finder method are used by the Entity Bean implementation to locate
requested entity objects
•Return type of a finder method must be the Entity Bean’s Remote Interface, or a collection
of Remote Interfaces
•The throws clause of every finder method includes the java.rmi.RemoteException and
javax.ejb.FinderException
Persistence Management
•Data access protocol for transferring state of the entity between the Entity Bean instances
and the database is referred to as object persistence
•There are two ways to manage this persistence during an application’s lifetime
–Bean-managed
–Container-managed
</query>
<abstract-schema-name>CustomerBeanSchema</abstract-schema-name>
<cmp-field>
<description>id of the customer</description>
<field-name>iD</field-name>
</cmp-field>
<cmp-field>
<description>First name of the customer</description>
<field-name>firstName</field-name>
</cmp-field>
<cmp-field>
<description>Last name of the customer</description>
<field-name>lastName</field-name>
</cmp-field>
<primkey-field>iD</primkey-field>
You have Downloaded this file from atrchowdary Yahoo Group 100
</ejb-relation>
EJB
What is the difference between normal Java object and EJB
Java Object:it's a reusable componet
EJB:is reusable and deployable component which can be deployed in any container
EJB : is a distributed component used to develop business applications. Container provides
runtime environment for EJBs.
EJB is an Java object implemented according EJB specification. Deployability is a feature.
What is EJB ?
Enterprise Java Bean is a specification for server-side scalable,transactional and multi-
user secure enterprise-level applications. It provides a consistant component architecture
for creating distributed n-tier middleware.
Enterprise JavaBeans (EJB) is a technology that based on J2EE platform.
EJBs are server-side components. EJB are used to develop the distributed, transactional
and secure applications based on Java technology.
What is Session Bean. What are the various types of Session Bean
SessionBeans: They are usually associated with one client. Each session bean is created
and destroyed by the particular EJB client that is associated with it. These beans do not
survive after system shutdown.
These Session Beans are of two types:
You have Downloaded this file from atrchowdary Yahoo Group 101
Stateful Session Beans:They maintain conversational state between subsequest calls by a
client
b) Stateful Session Beans : These beans have internal states. They can be stored
(getHandle()) and restored (getEJBObject()) across client sessions.Since they can be
persistence, they are also called as Persistence Session Beans.
Stateless Session Bean:Consider this as a servlet equivalent in EJB. It is just used to
service clients regardless of state and does not maintain any state.
a) Stateless Session Beans : These beans do not have internal States. They need not be
passivated. They can be pooled into service multiple clients.
What is the difference between Stateful session bean and Stateless session bean
Stateful:
Stateful s.Beans have the passivated and Active state which the Stateless bean does not
have.
Stateful beans are also Persistent session beans. They are designed to service business
processes that span multiple method requests or transactions.
Stateful session beans remembers the previous requests and reponses.
Stateful session beans does not have pooling concept.
Stateful Session Beans can retain their state on behave of an individual client.
Stateful Session Beans can be passivated and reuses them for many clients.
Stateful Session Bean has higher performance over stateless sessiob bean as they are
pooled by the application server.
Stateless:
Stateless Session Beans are designed to service business process that last only for a single
method call or request.
Stateless session beans do not remember the previous request and responses.
Stattless session bean instances are pooled.
Stateless Session Beans donot maintain states.
Stateless Session Beans, client specific data has to be pushed to the bean for each method
invocation which result in increase of network traffic.
You have Downloaded this file from atrchowdary Yahoo Group 102
Session bean callback methods differ whether it is Stateless or stateful Session bean. Here
they are.
Stateless Session Bean :-
1. setSessionContext()
2. ejbCreate()
3. ejbRemove()
When you will chose Stateful session bean and Stateless session bean
Stateful session bean is used when we need to maintain the client state . Example of
statefull session is Shoping cart site where we need to maintain the client state .
stateless session bean will not have a client state it will be in pool.
To maintain the state of the bean we prefer stateful session bean and example is to get
mini statement in
ATM we need sessions to be maintained.
What is Entity Bean. What are the various types of Entity Bean
Entity bean represents the real data which is stored in the persistent storage like Database
or file system. For example, There is a table in Database called Credit_card. This table
contains credit_card_no,first_name, last_name, ssn as colums and there are 100 rows in
the table. Here each row is represented by one instance of the entity bean and it is found
by an unique key (primary key) credit_card_no.
There are two types of entity beans.
1) Container Managed Persistence(CMP)
2) Bean Managed Presistence(BMP)
What is the difference between CMP and BMP
CMP means Container Managed Persistence. When we write CMP bean , we dont need
to write any JDBC code to connect to Database. The container will take care of connection
our enitty beans fields with database. The Container manages the persistence of the bean.
Absolutely no database access code is written inside the bean class.
BMP means Bean Managed Persistence. When we write BMP bean, it is programmer
responsiblity to write JDBC code to connect to Database.
You have Downloaded this file from atrchowdary Yahoo Group 103
The container can choose to passivate an entity bean instance within a transaction.
To passivate an instance, the container first invokes the ejbStore method to allow the
instance to prepare itself for the synchronization of the database state with the instance’s
state, and then the container invokes the ejbPassivate method to return the instance to the
pooled state.
There are three possible transitions from the ready to the pooled state: through the
ejbPassivate method, through the ejbRemove method (when the entity is removed), and
because of a transaction rollback for ejbCreate, ejbPostCreate,or ejbRemove.
The container can remove an instance in the pool by calling the unsetEntityContext()
method on the instance.
CMP
- Container managed persistence
- Developer maps the bean fields with the database fields in the deployment descriptors.
- Developer need not provide persistence logic (JDBC) within the bean class.
- Containiner manages the bean field to DB field synchronization.
The point is only ENTITY beans can have theier pesristence mechanism as CMP or
BMP. Session beans, which usually contains workflow or business logic should never have
persistence code.Incase you choose to write persistence within your session bean, its
usefull to note that the persistence is managed by the container BMP.Session beans cannot
be CMP and its not possibel to provide field mapping for session bean.
BMPs are much harder to develop and maintain than CMPs.All other things are being
equal,choose CMPs over BMPs for pure maintainability.
There are limitations in the types of the data sources that may be supported for
CMPs by a container provide.Support for non JDBC type data sources,such as CICS,are not
supported by the current CMP mapping and invocation schema.Therefore accessing these
would require a BMP.
Complex queries might not be possible with the basic EJBQL for CMPs.So prefer
BMPs for complex queries.
If relations between entity beans are established then CMPs may be necessary.CMR
has ability to define manage relationships between entity beans.
Container will tyr to optimize the SQL code for the CMPs,so they may be scalable
entity beans than the BMPs.
BMPs may be inappropriate for larger and more performance sesitive applications.
You have Downloaded this file from atrchowdary Yahoo Group 104
Disadvantages:
1)Will not support for some nonJDBC data sources,i.e,CICS.
2)Complex queries cannot be developed with EJBQL.
You have Downloaded this file from atrchowdary Yahoo Group 105
versa. Pass-by-reference eliminates time/system expenses for copying data variables,
which provides a performance advantage.
If you create an entity bean, you need to remember that it is usually used with a
local client view. If your entity bean needs to provide access to a client outside of the
existing JVM (i.e., a remote client), you typically use a session bean with a remote client
view. This is the so-called Session Facade pattern, the goal of which is that the session
bean provides the remote client access to the entity bean.
If you want to use container-managed relationship (CMR) in your enterprise bean, you
must expose local interfaces, and thus use local client view. This is mentioned in the EJB
specification.
Enterprise beans that are tightly coupled logically are good candidates for using local
client view. In other words, if one enterprise bean is always associated with another, it is
perfectly appropriate to co-locate them (i.e., deploy them both in one JVM) and organize
them through a local interface.
What is ACID
ACID is releated to transactions. It is an acronyam of Atomic, Consistent, Isolation and
Durable. Transaction must following the above four properties to be a better one
Atomic: It means a transaction must execute all or nothing at all.
Consistent: Consistency is a transactional characteristic that must be enforced by both the
transactional system and the application developer
Isolation: Transaation must be allowed to run itselft without the interference of the other
process or transactions.
Durable: Durablity means that all the data changes that made by the transaction must be
written in some type of physical storage before the transaction is successfully completed.
This ensures that transacitons are not lost even if the system crashes.
What are the various isolation levels in a transaction and differences between them
There are three isolation levels in Transaction. They are
1. Dirty reads 2.Non repeatable reads 3. Phantom reads.
Dirrty Reads: If transaction A updates a record in database followed by the transaction B
reading the record then the transaction A performs a rollback on its update operation, the
result that transaction B had read is invalid as it has been rolled back by transaction A.
What are the various transaction attributes and differences between them
There are six transaction attributes that are supported in EJB.
1. Required - T1---T1
0---T1
2. RequiresNew – T1---T2
0---T1
3. Mandatory - T1---T1
0---Error
4. Supports - T1---T1
0---0
5. NotSupported - T1---0
You have Downloaded this file from atrchowdary Yahoo Group 106
0---0
6. Never - T1---Error
0---0
A session in EJB is maintained using the SessionBeans. You design beans that can
contain business logic, and that can be used by the clients. You have two different session
beans: Stateful and Stateless. The first one is somehow connected with a single client. It
maintains the state for that client, can be used only by that client and when the client
"dies" then the session bean is "lost".
A Stateless Session Bean does not maintain any state and there is no guarantee that
the same client will use the same stateless bean, even for two calls one after the other. The
lifecycle of a Stateless Session EJB is slightly different from the one of a Stateful Session
EJB. Is EJB Containers responsability to take care of knowing exactly how to track each
session and redirect the request from a client to the correct instance of a Session Bean. The
way this is done is vendor dependant, and is part of the contract.
You have Downloaded this file from atrchowdary Yahoo Group 107
identification variables to define the return type of the query, and the WHERE clause
defines the conditional query.
What is the difference between JNDI context, Initial context, session context and ejb
context
Deployment Descriptor is a file located in the WEB-INF directory that controls the behaviour
of Servlets and JSP.
The file is called Web.xml and contains
xmlHeader
Web.xml DOCTYPE Sevlet name
Web-appelements ------ Servlet Class
Init-parm
Servlet Configuration :
<web-app>
<Servlet>
<Servlet-name>Admin</Servlet-name>
<Servlet-Class>com.ds.AdminServlet</Servlet-class>
</Servlet>
You have Downloaded this file from atrchowdary Yahoo Group 108
<init-param>
<param-value> </param-value>
<param-name> admin.com</param-name>
</init-param>
<Servlet-mapping>
<Servlet-name>Admin</Servlet-name>
<url-pattern>/Admin</url-pattern>
</Servlet-mapping>
</web-app>
Ejb-jar.xml
META-INF
Weblogic-ejb-jar.xml
<ejb-jar>
<enterprise-bean>
</Session>
<ejb-name>Statefulfinacialcalcu</ejb-name>
<home>fincal.stateful.fincalc</home>
<remote> fincal.stateful.fincalc </remote>
<ejb-Class> fincal.stateful.fincalcEJB <ejb-Class>
<session-type> Stateful </session-type>
<transaction-type> Container </transaction-type>
</Session>
</enterprise-bean>
<assembly-descriptor>
<container-transaction>
<method>
<ejb-name> Statefulfinacialcalcu </ejb-name>
<method-name> * </method-name>
</method>
<transaction-attribute> supports </transaction-attribute>
</container-transaction>
<assembly-descriptor>
<ejb-jar>
weblogic-ejb-jar.xml
<weblogic-ejb-jar>
<weblogic-enterprise-bean>
<ejb-name> Statefulfinacialcalcu </ejb-name>
<jndi-name> statefulfinacalc </jndi-name>
</weblogic-enterprise-bean>
</weblogic-ejb-jar>
What is CMR
CMR - Container Managed Relationships allows the developer to declare various types of
relationships between the entity beans
What is the difference between CMP 1.1 and CMP 2.0
CMR and sub classing of the CMP bean by the container
You have Downloaded this file from atrchowdary Yahoo Group 109
What is lazy loading
Lazy loading is a characteristic of an application when the actual loading and
instantiation of a class is delayed until the point just before the instance is actually used.
The goal is to only dedicate memory resources when necessary by only loading and
instantiating an object at the point when it is absolutely needed.
Tools such as Eclipse have popularized the lazy-loading approach as they use
the facility to control the load and initialization of heavyweight plug-ins. This gives the
double bonus of speeding up the initial load time for the application, as not all plug-ins are
loaded straightaway; ensuring efficiency as only the plug-ins that are used are loaded at
all.
What are simple rules that a Primary key class has to follow
Implement the equals and hashcode methods.
You have Downloaded this file from atrchowdary Yahoo Group 110
interface and provided deployment descriptor to denote which one is it that you are
deploying.
With EJB 1.1 specs, why is unsetSessionContext() not provided in Session
Beans, like unsetEntityContext() in Entity Beans
This was the answer Provided by some one... According to Mohan this one is not
correct. Please see Mohan's reply below and more in the comments section.
ejbRemove() is called for session beans every time the container destroyes the bean. So
you can use this method to do the stuff you typically would do in unsetEntityContext(). For
entity beans ejbRemove() is only called if the user explicitly deletes the bean. I think that is
the reason why the engineers at SUN invented the unsetEntityContext() for this kind of
bean.
How can i retrieve from inside my Bean(Stateless session and Entity CMP) the user name
which i am serving (the user name of user just logged in my web application)
Inside an EJB you may retrieve the "Caller" name, that is the login id by invoking:
sessionContext.getCallerIdentity().getName() where sessionContext is the instance of
"SessionContext" (setSessionContext) passed to the Session Bean, or the instance of
"EntityContext" (setEntityContext) passed to the Entity Bean.
You have Downloaded this file from atrchowdary Yahoo Group 111
running in a transaction, a separate transaction will be set up for each call to your entity
beans.
If your session bean is using bean-managed transactions, you can ensure that the calls are
handled in the same transaction by :
Is there a way to get the original exception object from inside a nested or wrapped
Exception (for example an EJBException or RemoteException)
Absolutely yes, but the way to do that depends on the Exception, since there are no
standards for that. Some examples: ·When you have an javax.ejb.EJBException, you can
use the getCausedByException() that returns a java.lang.Exception. ·A
java.rmi.RemoteException there is a public field called detail of type java.lang.Throwable
·With a java.sql.SQLException you need to use the method getNextException() to get the
chained java.sql.SQLException. ·When you have an
java.lang.reflect.InvocationtargetException, you can get the thrown target
java.lang.Throwable using the getTargetException() method.
Can undefined primary keys are possible with Entity beans?If so, what type is defined?
Yes,undefined primary keys are possible with Entity Beans.The type is defined as
java.lang.Object.
When two entity beans are said to be identical?Which method is used to compare identical
or not?
Two Entity Beans are said to be Identical,if they have the same home inteface and their
primary keys are the same.To test for this ,you must use the component inteface's
isIdentical() method.
How the abstract classes in CMP are converted into concrete classes?
EJB2.0 allows developer to create only abstract classes and at the time of deployement
the container creates concrete classes of the abstract. It is easy for container to read
abstract classes and appropriately generate concrete classes.
You have Downloaded this file from atrchowdary Yahoo Group 112
Questions
1)A developer successfully creating and tests a stateful bean following deployment,
intermittent
"NullpointerException" begin to occur, particularly when the server is hardly loaded. What
most likely to
related problem.
a) setSessionContext b) ejbCreate c) ejbPassivate d) beforeCompletion e) ejbLoad
You have Downloaded this file from atrchowdary Yahoo Group 113
Choice 4 : Bean D
Choice 5 : Bean E
8)Which one of the following methods is generally called in both ejbLoad() and
ejbStore()?
a getEJBObject() b getHandle() c remove() d getEJBHome() e getPrimaryKey()
ans)e
10)Given the above code in your stateless session bean business method
implementation, and the transaction is container-managed with a Transaction Attribute of
TX_SUPPORTS, which one of the following is the first error generated?
a Error when compiling home interface
b Error while generating stubs and skeletons
c NullPointerException during deployment
d Runtime error
e Compile-time error for the bean implementation ans)b
11)Which one of the following is the result of attempting to deploy a stateless session
bean and execute one of the method M when the bean implementation contains the
method M NOT defined in the remote interface?
a Compile time error for remote interface
b Compile time error for bean implementation
c Compile time error during stub/skeleton generation
d Code will compile without errors.
e Compile time error for home interface ans)d
12)Which one of the following characteristics is NOT true of RMI and Enterprise Java
Beans?
a They must execute within the confines of a Java virtual machine (JVM).
b They serialize objects for distribution.
c They require .class files to generate stubs and skeletons.
d They do not require IDL.
e They specify the use of the IIOP wire protocol for distribution. ans)a
13. Which one of the following is the result of attempting to deploy a stateless session
bean and execute one of the method M when the bean implementation contains the
method M NOT defined in the remote interface?
a Compile time error for remote interface
b Compile time error for bean implementation
c Compile time error during stub/skeleton generation
d Code will compile without errors.
e Compile time error for home interface
14. If a unique constraint for primary keys is not enabled in a database, multiple rows of
data with the same primary key could exist in a table. Entity beans that represent the data
from the table described above are likely to throw which exception?
You have Downloaded this file from atrchowdary Yahoo Group 114
a NoSuchEntityException
b FinderException
c ObjectNotFoundException
d RemoveException
e NullPointerException
15. A developer needs to deploy an Enterprise Java Bean, specifically an entity bean, but is
unsure if the bean container is able to create and provide a transaction context. Which
attribute below will allow successful deployment of the bean?
a BeanManaged
b RequiresNew
c Mandatory
d Required
e Supports
16. What is the outcome of attempting to compile and execute the method above,
assuming it is implemented in a stateful session bean?
a Compile-time error for remote interface
b Run-time error when bean is created
c Compile-time error for bean implementation class
d The method will run, violating the EJB specification.
e Run-time error when the method is executed
17. Which one of the following is the result of attempting to deploy a stateless session
bean and execute one of the method M when the bean implementation contains the
method M NOT defined in the remote interface?
a Compile time error for remote interface
b Compile time error for bean implementation
c Compile time error during stub/skeleton generation
d Code will compile without errors.
e Compile time error for home interface
18. If a unique constraint for primary keys is not enabled in a database, multiple rows of
data with the same primary key could exist in a table. Entity beans that represent the data
from the table described above are likely to throw which exception?
a NoSuchEntityException
b FinderException
c ObjectNotFoundException
d RemoveException
e NullPointerException
19. There are two Enterprise Java Beans, A and B. A method in "A" named "Am" begins
execution, reads a value v from the database and sets a variable "X" to value v, which is
one hundred. "Am" adds fifty to the variable X and updates the database with the new
value of X. "Am" calls "Bm", which is a method in B. "Bm" begins executing. "Bm" reads an
additional value from the database. Based on the value, "Bm" determines that a business
rule has been violated and aborts the transaction. Control is returned to
"Am".Requirement: If "Bm" aborts the transaction, it is imperative that the original value
be read from the database and stored in variable X.
Given the scenario above, which Transaction Attributes will most likely meet the
requirements stated?
a A-RequiresNew, B-Mandatory
b A-Mandatory, B-RequiresNew
c A-RequiresNew, B-Supports
d A-NotSupported, B-RequiresNew
e A-RequiresNew, B-RequiresNew
You have Downloaded this file from atrchowdary Yahoo Group 115
Choice 2 : It is passed by value.
Choice 3 : It cannot be passed because it implements java.rmi.Remote.
Choice 4 : (Correct) It cannot be passed unless it ALSO implements java.io.Serializable.
Choice 5 : It is passed by reference.
-------------------------
--------------------------
You have Downloaded this file from atrchowdary Yahoo Group 116
Which one of the following methods is generally called
in both
ejbLoad() and ejbStore()?
a getEJBObject()
b getHandle()
c remove()
d getEJBHome()
e getPrimaryKey() (Correct)
You have Downloaded this file from atrchowdary Yahoo Group 117