About bearparc

A software development blog for the qualified developer

Blogroll

Application Server (24)
Business Intelligence (13)
Business Logic Layer (6)
C (2)
C++ (3)
CMMI (4)
Data Mining (3)
DataMart (11)
DataWarehouse (11)
ETL (7)
FAQ – Troubleshooting (8)
Framework (4)
Hardware (10)
Informatica Powercenter (6)
Investition (2)
J2ee (8)
Java (6)
JBoss (1)
Liferay (11)
LINUX (11)
objektorientiertes Design (2)
OLAP (7)
Oracle (48)
Projektmanagement (5)
Prozeßmodelle (4)
Software (33)
SQL (24)
Uncategorized (31)
Web 2.0 (5)
Weblogic (17)
wordpress (5)
XML (2)

WP-Cumulus by Roy Tanck and Luke Morton requires Flash Player 9 or better.

8024402c ¤ supported ¤ with ¤ nowait ¤ zeilen ¤ ora-00054: ¤ memory_target ¤ oracle ¤ ora-00845 ¤ informatica ¤ to_integer ¤ this ¤ linux ¤ busy ¤ workflow ¤ system ¤ resource ¤ specified ¤ acquire ¤
ora-00054: resource busy and acquire with nowait specified ¤ ora-00845: memory_target not supported on this system ¤ informatica workflow ¤ ora-00845 ¤ ora-00054 ¤ ora-00845 linux ¤

www.brokerbase.ch network

Search



Add to Technorati Favorites Blogverzeichnis - Blog Verzeichnis bloggerei.de Deutsches Blog Verzeichnis blogoscoop Add to Google http://www.wikio.de

Business Logic Layer

Bringt Spring noch Vorteile gegenüber EJB 3.0 ?

Sunday, April 29th, 2007

Was ist Spring? Spring ist ein beliebtes, aber nicht standardisiertes open source J2EE-framework.

Neues in EJB 3.0

Monday, April 23rd, 2007

Was ändert sich in EJB 3.0 gegenüber EJB 2.x?

POJO

Monday, April 23rd, 2007

Plain old Java Object, mit POJO’s baut man das Domain Model auf, ohne umfangreiche Konventionen wie bei Entity Beans einhalten zu müssen. Man konzentriert sich auf die fachlichen Aspekte (Rich Domain Model), so daß in der Session-Beans nur noch Transaction-Handling

Entity Beans

Thursday, March 15th, 2007

An entity bean represents an object that contains data, such as a customer, an account, or an inventory item. Entity beans contain data values and methods that can be invoked on those values. The values are saved in a database (using JDBC) or some other data store. Entity beans can participate in transactions involving other [...]

Message-Driven Beans

Friday, March 9th, 2007

Message-driven beans, introduced in the EJB 2.0 specification, are enterprise beans that handle asynchronous messages received from JMS Message Queues. JMS routes messages to a message-driven bean, which selects an instance from a pool to process the message.

Session Beans

Friday, March 9th, 2007

A session bean is a transient EJB instance that serves a single client. Session beans tend to implement procedural logic; they embody actions more than data. The EJB container creates a session bean at a client’s request. It then maintains the bean as long as the client maintains its connection to the bean. Sessions beans [...]