Archive | November, 2010

Spring HTML ESCAPE and ESCAPE BODY Tags (<spring:htmlEscape> and <spring:escapeBody>)

November 30, 2010

0 Comments

Spring Tag Library Spring MVC provides a JSP tag library (Spring Form) for making it easier to bind form elements to Model data. Spring Framework also provides you with some tags for evaluating errors, setting themes and outputting internationalized messages. Read Integrating Struts With Spring Syntax to use Spring tag library 1 <%@taglib uri="http://www.springframework.org/tags" prefix="spring"> [...]

email

Spring BIND and NESTEDPATH Tags (<spring:bind> and <spring:nestedPath>)

November 30, 2010

0 Comments

Spring Tag Library Spring MVC provides a JSP tag library (Spring Form) for making it easier to bind form elements to Model data. Spring Framework also provides you with some tags for evaluating errors, setting themes and outputting internationalized messages. Read Integrating Struts With Spring Syntax to use Spring tag library 1 <%@taglib uri="http://www.springframework.org/tags" prefix="spring"> [...]

Spring MESSAGE and THEME Tags (<spring:message> and <spring:theme>)

November 30, 2010

0 Comments

Spring Tag Library Spring MVC provides a JSP tag library (Spring Form) for making it easier to bind form elements to Model data. Spring Framework also provides you with some tags for evaluating errors, setting themes and outputting internationalized messages. Read Integrating Struts With Spring Syntax to use Spring tag library 1 <%@taglib uri="http://www.springframework.org/tags" prefix="spring"> [...]

Managing transactions in EJB 3.0

November 29, 2010

3 Comments

Transaction represents a group of activities that must be performed as a single work unit. This clarifies that a transaction is complete if and only if all the work items within a work group results in success. If any of the work items fails, then the transaction as a whole will be treated as a [...]

Runtime.addShutdownHook()

November 20, 2010

1 Comment

Preface Every Java Program can attach a shutdown hook to JVM, i.e. piece of instructions that JVM should execute before going down. Problem A program may require to execute some pieces of instructions when application goes down. An application may go down because of several reasons: Because all of its threads have completed execution Because [...]

Integrating Spring Web Flow with JSF

November 11, 2010

0 Comments

Introduction Spring Web Flow is a framework that provides abilities to developers to capture the workflow of a web application in the form of configurational constructs called Flows. JSF is a UI framework that provides support for developing complex user interface components along with simplified page navigation rules and event handling. In this article we [...]

Creating RIA with Adobe Flex framework

November 11, 2010

0 Comments

Introduction Adobe Flex provides a platform for developing Rich Internet applications (RIA). Adobe Flex is not one thing but it is a combination of various languages, frameworks and builders like MXML, Action Script, SDK and Flex Builder. For creating Adobe Flex applications, we use the markup language MXML which is similar to XML in syntax. [...]

Spring Framework FORM Tags

November 10, 2010

0 Comments

Spring FORM Tag Library Spring MVC provides a JSP tag library (Spring Form) for making it easier to bind form elements to Model data. Spring Framework also provides you with some tags for evaluating errors, setting themes and outputting internationalized messages. Read Integrating Struts With Spring Syntax to use Spring Form tag library 1 <%@taglib [...]