| Thread | Last Post | Replies |
|
| superflous where clause in simple finder query? | 31 Jan 2004 18:19 GMT | 1 |
I am doing my first steps with JBoss (3.2.3) and CMP (2.0). wondering about the poor performance of my finder methods I took a look into the SQL that went to the database. "SELECT DISTINCT OBJECT(p) FROM Person p"
|
| CMP: Problems with many-to-many relation | 29 Jan 2004 13:36 GMT | 2 |
We've been troubling for some time now with implementing a many-to-many relation using CMP. We are using JBoss 3.0.8, Eclipse and XDoclet. So, we have the following two tables: User 1 -------- * Friend * ---------- 1 User
|
| how to use javamail???? | 28 Jan 2004 09:02 GMT | 2 |
A *beginners* question. I make use of Netbeans IDE 3.5.1 I'd like to make some application which is able to send mail. So I found out that the API "javamail" might be useful.
|
| Repost EJB CMP : generating an ID | 26 Jan 2004 08:02 GMT | 1 |
Hi everbody, It's possible to have some code to illustarte your solutions ? Thank you all Bernard Koninckx
|
| Processing large amount of data | 23 Jan 2004 13:54 GMT | 1 |
I've following problem. The project I'm working in has two main functionalities: first is gathering data, and the second is data processing. First one is implemented as EJB. There are mainly only simple CRUD
|
| JavaBeans - how to get "owner" variable? | 23 Jan 2004 11:26 GMT | 1 |
I am beginner in Java and JavaBeans. Now I have problem (I have a lot of docs and books, but can't understand how to resolve my problem). (Sorry for my English). 1-st class is descendant of Object (no Component!), it is non-visible bean
|
| tutorial on javaBeans? | 22 Jan 2004 15:46 GMT | 1 |
On the internet several tutorials are available on Java. But I'm still looking for a nice tutorial on JavaBeans. has anyone a good suggestion for me thanks in advance.
|
| EJB CMP : generating an ID | 22 Jan 2004 11:16 GMT | 10 |
I would like to create a custom number identifier for a CMP bean. I would like just work with a sequencial number begining to 1 an step by 1. How can I do implement that ? I would like also when the EJB server crashes, thant this sequence is automoticaly set to the max number + 1.
|
| Code shared between 2 EJB, where to put ? | 21 Jan 2004 04:56 GMT | 3 |
I built an EAR (on WebLogic) that contains 2 session EJB which share some common Java classes (utility methods for example). I made a .jar with the .class of the common classes and I put it in directory META-INF/lib of the EAR.
|
| javascript function inside setproperty value | 20 Jan 2004 17:06 GMT | 2 |
I am new to JSP and was wondering if there is a way to call a javascript function inside the setproperty value. like the following <jsp:setProperty name="converter" property="startTime" value="randomFunc()" />
|
| why cant Stateless Session EJBs allow concurrency | 20 Jan 2004 13:16 GMT | 3 |
From this EJB book I am reading (Richard Monson-Haefel) it says that all EJBs do not support concurrency by default. Why should this be so in the case of Stateless Session ejb's because in any case it does not store any state information.
|
| EJB QL parameterized LIKE | 18 Jan 2004 12:17 GMT | 3 |
I want to use parameterized LIKE in EJB QL. I use WSAD 5.0. I have tried with theese following two solutions without success: Please help me. SELECT OBJECT(o) FROM Uppgift o WHERE o.objectId LIKE ?1 SELECT OBJECT(0) FROM Uppgift o WHERE LOCATE( ?1, o.description ) > 0
|
| Client Server Help (beans) | 17 Jan 2004 18:29 GMT | 1 |
I am starting to write a Java Client Server App, I am comming from VB and VC++. I have done much reading and am ready to start laying out the class's on paper. I am planning to use beans as the access point to the db and have my clients use the beans located on the server. I dont ...
|
| CMP EJB: How to retrive foreign key values from a 1-N relation? | 16 Jan 2004 14:14 GMT | 1 |
Need help in order to retrive the foreign key values from a 1-N relation. I have 2 tables, User and Friend, where a User can have many Friends. The User table has id as PK, while the Friend table has id as PK and userId as FK.
|
| Which data structure to use for large volumes of data? | 14 Jan 2004 07:43 GMT | 4 |
We have an application that brings thousands of records from an Oracle database (50,000+). The application is developed in EJB, deployed on JBoss. We're currently using arraylists in a stateless session bean to contain the recordset and keep bumping into JVM heapsize problem.
|