Advertisement

10.05.2008 at 04:07AM PDT, ID: 23788406
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.1

Incomplete Deployment

Asked by pfmg in Enterprise Java Beans (EJB), Deployment Software for Development, Jboss Application Server

Tags: ,

hi!
i trying to deploy the FirstEjb3Tutorial example but it does´t work
i´am using
Java 6
jboss-4.2.3.GA
postgres database
driver:postgresql-8.3-603.jdbc4.jar copied in: jboss_home\server\default\lib
i have created the myFavouriteName-ds.xml file in:jboss_home\server\default\deploy
i have created the proyect with the following files:
main folder:
*ejbModule
*-de
*- - laliluna
*- - - library
                    -class book.java
                    -class BookTestBean.java
                    -interface BookTestBeanLocal
                    -interface BookTestBeanRemote
                    -jndi.properties
* folder:META-INF
-ejb-jar.xml
-persistence.xml
-MANIFEST.MF

the error is:
--- MBeans waiting for other MBeans ---
ObjectName: persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
  State: NOTYETINSTALLED
  I Depend On:
    jboss.jca:name=ejb3ProjectDS,service=DataSourceBinding

ObjectName: persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
  State: NOTYETINSTALLED
  I Depend On:
    jboss.jca:name=ejb3ProjectDS,service=DataSourceBinding

ObjectName: persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
  State: NOTYETINSTALLED
  I Depend On:
    jboss.jca:name=ejb3ProjectDS,service=DataSourceBinding

ObjectName: persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
  State: NOTYETINSTALLED
  I Depend On:
    jboss.jca:name=ejb3ProjectDS,service=DataSourceBinding

ObjectName: persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
  State: NOTYETINSTALLED
  I Depend On:
    jboss.jca:name=ejb3ProjectDS,service=DataSourceBinding
  Depends On Me:
    jboss.j2ee:jar=FirstEjb3Tutorial.jar,name=BookTestBean,service=EJB3

ObjectName: jboss.j2ee:jar=FirstEjb3Tutorial.jar,name=BookTestBean,service=EJB3
  State: NOTYETINSTALLED
  I Depend On:
    persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.jca:name=ejb3ProjectDS,service=DataSourceBinding
  State: NOTYETINSTALLED
  Depends On Me:
    persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
    persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
    persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
    persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial
    persistence.units:jar=FirstEjb3Tutorial.jar,unitName=FirstEjb3Tutorial


                     




Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
******************************class Book************************
 
package de.laliluna.library;
 
import java.io.Serializable;
 
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
 
@Entity
@Table(name="book")
@SequenceGenerator(name = "book_sequence", sequenceName = "book_id_seq")
public class Book implements Serializable
{
 
	private static final long serialVersionUID = 7422574264557894633L;
	
	@Id
	@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "book_sequence")
	private Integer id;
	private String title;
	private String author;
	
	
	public Book() 
	{
		super();	
	}
	public Book(Integer id, String title, String author) {
		super();
		this.id = id;
		this.title = title;
		this.author = author;
	}
 
	@Override
	public String toString() 
	{
	return "Book: " + getId() + " Title " + getTitle() + " Author "
	+ getAuthor();
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getAuthor() {
		return author;
	}
	public void setAuthor(String author) {
		this.author = author;
	}
}
 
*************************class BookTestBean ************************
package de.laliluna.library;
 
import java.util.Iterator;
import java.util.List;
 
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
 
@Stateless
public class BookTestBean implements BookTestBeanLocal, BookTestBeanRemote 
{
	@PersistenceContext
	EntityManager em;
	
	public static final String RemoteJNDIName = BookTestBean.class.getSimpleName()+"/remote";
	public static final String LocalJNDIName = BookTestBean.class.getSimpleName()+"/local";
	
	public void test() 
	{
		Book book = new Book(null, "My first bean book", "Sebastian");
		em.persist(book);
		Book book2 = new Book(null, "another book", "Paul");
		em.persist(book2);
		Book book3 = new Book(null, "EJB 3 developer guide, comes soon",
		"Sebastian");
		em.persist(book3);
		System.out.println("list some books");
		List someBooks = em.createQuery("from Book b where b.author=:name")
		.setParameter("name", "Sebastian").getResultList();
		for (Iterator iter = someBooks.iterator(); iter.hasNext();)
		{
		Book element = (Book) iter.next();
		System.out.println(element);
		}
		System.out.println("List all books");
		List allBooks = em.createQuery("from Book").getResultList();
		for (Iterator iter = allBooks.iterator(); iter.hasNext();)
		{
		Book element = (Book) iter.next();
		System.out.println(element);
		}
		System.out.println("delete a book");
		em.remove(book2);
		System.out.println("List all books");
		allBooks = em.createQuery("from Book").getResultList();
		for (Iterator iter = allBooks.iterator(); iter.hasNext();)
		{
		Book element = (Book) iter.next();
		System.out.println(element);
		}
		}	
}
*********************** BookTestBeanLocal ************************
package de.laliluna.library;
 
import javax.ejb.Local;
@Local
public interface BookTestBeanLocal 
{
	public void test();
}
*********************** BookTestBeanRemote ************************
package de.laliluna.library;
 
import javax.ejb.Remote;
 
@Remote
public interface BookTestBeanRemote 
{
public void test();
}
********************jndi.properties*****************
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=localhost:1099
***********************ejb-jar.xml**********************
<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar 
version="3.0" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd">
</ejb-jar>
********************* persistence.xml*********************
<persistence>
	<persistence-unit name="FirstEjb3Tutorial">
		<jta-data-source>java:/ejb3ProjectDS</jta-data-source>
		<properties>
			<property name="hibernate.hbm2ddl.auto"
			value="create-drop"/>
		</properties>
	</persistence-unit>
</persistence>
[+][-]10.05.2008 at 11:59PM PDT, ID: 22647527

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Enterprise Java Beans (EJB), Deployment Software for Development, Jboss Application Server
Tags: java, Explorer 7.0
Sign Up Now!
Solution Provided By: ramazanyich
Participating Experts: 1
Solution Grade: B
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628