Jboss Ejb3.0 Entity Bean

 
 

Order.java

package org.jboss.tutorial.entity.bean;

 

import javax.persistence.CascadeType;

import javax.persistence.Entity;

import javax.persistence.FetchType;

import javax.persistence.GeneratorType;

import javax.persistence.Id;

import javax.persistence.OneToMany;

import javax.persistence.Table;

import javax.persistence.Id;

import javax.persistence.CascadeType;

import javax.persistence.FetchType;

import java.util.ArrayList;

import java.util.Collection;

 

@Entity

@Table(name = "PURCHASE_ORDER")

//If the table name isn't specified it defaults to the bean name

//of the class. For instance, the LineItem EJB would be mapped to

//the LINEITEM table

public class Order implements java.io.Serializable

{

   private int id;

   private double total;

   private Collection<LineItem> lineItems;

 

   @Id(generate = GeneratorType.AUTO)

   public int getId()

   {

      return id;

   }

 

   public void setId(int id)

   {

      this.id = id;

   }

 

   public double getTotal()

   {

      return total;

   }

 

   public void setTotal(double total)

   {

      this.total = total;

   }

 

   public void addPurchase(String product, int quantity, double price)

   {

      if (lineItems == null) lineItems = new ArrayList<LineItem>();

      LineItem item = new LineItem();

      item.setOrder(this);

      item.setProduct(product);

      item.setQuantity(quantity);

      item.setSubtotal(quantity * price);

      lineItems.add(item);

      total += quantity * price;

   }

 

   //CascadeType.ALL specifies that when an Order is created,

   //any LineItems held in the lineItems collection will be created

   //as well (CascadeType.PERSIST). If the Order is delete from

   //persistence storage, all related LineItems will be

   //deleted (CascadeType.REMOVE). If an Order instance is

   //reattached to persistence storage, any changes to the

   //LineItems collection will be merged with persistence

   //storage (CascadeType.MERGE).

   //FetchType.EAGER specifies that when the Order is loaded

   //whether or not to prefetch the relationship as well.

   //If you want the LineItems to be loaded on demand, then specify FetchType.LAZY.

   //   The mappedBy attribute specifies that this is a bi-directional

   //relationship that is managed by the order property on the LineItem entity bean.

   @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy="order")

   public Collection<LineItem> getLineItems()

   {

      return lineItems;

   }

 

   public void setLineItems(Collection<LineItem> lineItems)

   {

      this.lineItems = lineItems;

   }

}

 

加了不少英文注释,希望能看得懂。

@Table(name = "PURCHASE_ORDER")

指名数据库(jboss的数据库为hsqldb)中对应得表的名字,默认为class的名字,比如下面的LineItem就没有@table。(order.java , LineItem.java都为o/r映射,值得互相对照)

@Id(generate = GeneratorType.AUTO)

递增,同数据库里的相同。必须在getter方法上标注。

@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy="order")

关系:order和LineItem为1对多的关系。在这里CascadeType.ALL是指明当建立一个Order被实例化后,都应该同时同时建立LineItem。注释里的就是根据两者建立时间的不同,定义了不同的CascadeType。

 

 

LineItem.java

package org.jboss.tutorial.entity.bean;

 

import javax.persistence.Entity;

import javax.persistence.GeneratorType;

import javax.persistence.Id;

import javax.persistence.JoinColumn;

import javax.persistence.ManyToOne;

import javax.persistence.Entity;

 

@Entity

public class LineItem implements java.io.Serializable

{

   private int id;

   private double subtotal;

   private int quantity;

   private String product;

   private Order order;

 

   @Id(generate = GeneratorType.AUTO)

   public int getId()

   {

      return id;

   }

 

   public void setId(int id)

   {

      this.id = id;

   }

 

   public double getSubtotal()

   {

      return subtotal;

   }

 

   public void setSubtotal(double subtotal)

   {

      this.subtotal = subtotal;

   }

 

   public int getQuantity()

   {

      return quantity;

   }

 

   public void setQuantity(int quantity)

   {

      this.quantity = quantity;

   }

 

   public String getProduct()

   {

      return product;

   }

 

   public void setProduct(String product)

   {

      this.product = product;

   }

 

   //The @JoinColumn specifies the foreign key column within the LineItem table.

   @ManyToOne

   @JoinColumn(name = "order_id")

   public Order getOrder()

   {

      return order;

   }

 

   public void setOrder(Order order)

   {

      this.order = order;

   }

}

 

 

 

ShoppingCart.java

package org.jboss.tutorial.entity.bean;

 

import javax.ejb.Remote;

import javax.ejb.Remove;

 

@Remote

public interface ShoppingCart

{

   void buy(String product, int quantity, double price);

 

   Order getOrder();

 

   @Remove void checkout();

}

 

 

 

ShoppingCartBean.java

package org.jboss.tutorial.entity.bean;

 

import javax.persistence.EntityManager;

import javax.ejb.Inject;

import javax.ejb.Remove;

import javax.ejb.Stateful;

 

 

@Stateful

public class ShoppingCartBean implements ShoppingCart

{

   @Inject

   private EntityManager manager;       //The EntityManager is used to do querying,

//creating, find by primary key, and removal of entity beans.

   private Order order;

 

   public void buy(String product, int quantity, double price)

   {

      if (order == null) order = new Order();

      order.addPurchase(product, quantity, price);

   }

 

   public Order getOrder()

   {

      return order;

   }

 

   @Remove

   public void checkout()

   {

      manager.persist(order);

   }

}

 

EntityManager的作用可大了,可以用于查询,创建,删除实体Bean,这里插入个EntityManager,主要是在最后用户离开时,在数据库里保存数据,相当于保存个object。运行完Client.java后就可以在hsqldb上看到有purchase_order 和 LineItem 的两张表。HypersonicDatabase ,找到startDatabaseManager然后下面有个invoke,点击就可以访问hsqldb了。

 

 

Client.java

package org.jboss.tutorial.entity.client;

 

 

import org.jboss.tutorial.entity.bean.LineItem;

import org.jboss.tutorial.entity.bean.Order;

import org.jboss.tutorial.entity.bean.ShoppingCart;

 

import javax.naming.InitialContext;

 

public class Client

{

   public static void main(String[] args) throws Exception

   {

      InitialContext ctx = new InitialContext();

      ShoppingCart cart = (ShoppingCart) ctx.lookup(ShoppingCart.class.getName());

 

      System.out.println("Buying 2 memory sticks");

      cart.buy("Memory stick", 2, 500.00);

      System.out.println("Buying a laptop");

      cart.buy("Laptop", 1, 2000.00);

 

      System.out.println("Print cart:");

      Order order = cart.getOrder();

      System.out.println("Total: $" + order.getTotal());

      for (LineItem item : order.getLineItems())

      {

         System.out.println(item.getQuantity() + "     " + item.getProduct() + "     " + item.getSubtotal());

      }

 

      System.out.println("Checkout");

      cart.checkout();

   }

}

 

 

这里附上log4j.properties 在jboss-EJB-3.0_Preview_5.zip 里面没有这个老是显示缺少appender。有了这个将在该目录下生成个record.log日志文件。

 

log4j.properties

log4j.appender.R=org.apache.log4j.RollingFileAppender

log4j.appender.R.File=record.log

log4j.appender.R.layout=org.apache.log4j.PatternLayout

log4j.appender.R.layout.ConversionPattern=%p  %d{hh:mm:ss} %t %c{1} -%m%n

log4j.appender.R.MaxBackupIndex=1

log4j.appender.R.MaxFileSize=100KB

log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) -%m%n

log4j.appender.stdout=org.apache.log4j.ConsoleAppender

log4j.rootLogger=stdout,R

 

 

 

运行:参考installing.html

Windows下

打开命令提示符cmd,到  jboss_home/bin

 Run.bat –c all

用ant

先build后run 就行了。

 

 

 

 

 

时间: 2024-10-28 22:15:28

Jboss Ejb3.0 Entity Bean的相关文章

Jboss Ejb3.0 Statefull Bean

这个例子结合了j2se5.0的generis新特性,可以先看下我写的J2se5.0 generis新特性   ShoppingCart.java package org.jboss.tutorial.stateful.bean; import javax.ejb.Remote; import javax.ejb.Remove; import java.util.HashMap; @Remote public interface ShoppingCart {    void buy(String

Jboss EJB3.0 security

  Calculator.java package org.jboss.tutorial.security.bean;   import javax.ejb.Remote;   @Remote public interface Calculator {    int add(int x, int y);    int subtract(int x, int y);    int divide(int x, int y); }       CalculatorBean.java package o

Jboss Ejb3.0 Interceptor

  Interceptor为拦截器,可以监听程序的整个程序或方法.从多个程序理解问题往往比较容易,我就在自己写的HelloWorld 程序的基础上增加了Interceptor . 有如下几个程序:Hello.java , HelloLocal.java , HelloRemote.java , HelloBean.java, TracingInterceptor.java Client.java 重点在HelloBean.java, TracingInterceptor.java 这两个程序.

一步一步学EJB3.0(四):实体Bean开发

EJB3.0实体Bean开发是是很简单的,主要就是学习标注的使用, 现在EJB3实体Bean是纯粹的POJO.实际 上这表达了和Hibernate持久化实体对象同样的概念.它们的映射都通过JDK5.0注解来定义(EJB3规范已经 定义了对应的XML描述语法).注解分为两个部分,分别是逻辑映射注解和物理映射注解,通过逻辑映射注解 可以描述对象模型,类之间的关系等等,而物理映射注解则描述了物理的schema,表,列,索引等等. 这些标注都封装在javax.persistence包下,如果是使用Hib

eclipse + JBoss 5 + EJB3开发指南(7):实现Entity Bean的一对一(one-to-one)映射

本文为原创,如需转载,请注明作者和出处,谢谢! 上一篇:eclipse + JBoss 5 + EJB3开发指南(6):编写第一个实体Bean程序     一对一映射是很常用的.在一般情况下,一个主表通过外键和从表形成一对一的关系.在EJB3中使用@OneToOne注释来映射.一对一关系除了使用外键进行关联外,也可以采用共享主键的方式连接两个表.先看看如下两个表的结构: 图1  t_customers 图2  t_referees     t_customers和t_referees表形成了一对

eclipse + JBoss 5 + EJB3开发指南(9):实现Entity Bean的多对多(many-to-many)映射

本文为原创,如需转载,请注明作者和出处,谢谢! 上一篇:eclipse + JBoss 5 + EJB3开发指南(8):实现Entity Bean的一对多(one-to-many)映射     在EJB3中需要使用@ManyToMany对封装多对多关系的字段或getter方法进行注释.先看看下面的表: 图1  t_addresses表       t_addresses表和t_customers表是多对多的关系.需要使用一个关联表来描述这种关系,关联表的结构如下图所示. 图2  t_custom

EJB3.0之实体Bean的继承_JSP编程

在EJB3.0中,实体Bean可以实现继承关系. 比如有个Person的实体bean,它有姓名和性别两个属性. 上帝和女娲造人的时候,造出两种人:Man和Woman.Man和Woman都是实体Bean,而且他们都继承Person. 单一表策略就是副实体和子实体的数据都存放在一张表中,同时指定一列用来区别这些实体. 如: @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE, discriminatorType = Discrim

EJB3.0之实体Bean的继承

EJB 在EJB3.0中,实体Bean可以实现继承关系. 比如有个Person的实体bean,它有姓名和性别两个属性. 上帝和女娲造人的时候,造出两种人:Man和Woman.Man和Woman都是实体Bean,而且他们都继承Person. 单一表策略就是副实体和子实体的数据都存放在一张表中,同时指定一列用来区别这些实体. 如: @Entity @Inheritance(strategy = InheritanceType.SINGLE_TABLE, discriminatorType = Dis

EJB3.0入门经典

1.什么是EJB?Enterprise JavaBeans(EJB)定义了3种企业Bean:会话Bean(Session Bean).实体Bean(Entity Bean)和消息驱动Bean(Message Driven Bean) 2.支持EJB的容器有哪些?Jboss(4.2x以上版本).Glassfish.WebLogic(10以上版本).Sun Application Server(9.0以上版本).Oracle Application Server(10g以上版本)和我们国内的Apus