How can this be done? I have a situation where messages are supposed to be consumed by client in thread other tha main. They are read correctly but after the first readout they are marked as...
Type: Posts; User: Boris Jockov; Keyword(s):
How can this be done? I have a situation where messages are supposed to be consumed by client in thread other tha main. They are read correctly but after the first readout they are marked as...
Thanks for your help. I'll try it as soon as i can.
Hello,
I'd like to know whether spring supports hibernate class-cache. I need to specify cache usage on session factory level. I've read in some post a year ago that it doesn't support this. Maybe...
Hi,
I haven't had the time to seach forum for this so pardon me if it's already posted. I'd like to know if is there any difference in performance between saving/deleting objects one by one and...
Thanks. I already solved it
Hi all. I have a controller which calls some business object's methods that generate some binary data and place it in a stream for downloading. But when I call response.getOutputStream() I trigger an...
It worked as you said. Thanks
Validation is working after all. I screwed up something in my code. If anyone cares I could post my source code. Thanks for your patience yatesco.
Alright, now I have something that works, half way though.
Let's summarize. I have two types of objects, type and value. Type(DataTypeEnumerated) has list of values(DataTypeEnumeratedValue) and two...
Yes I have a single object and here it is
package model;
import java.util.ArrayList;
import java.util.List;
public class DataTypeEnumerated extends DataType
{
they cant be the same object because type has many values
Thanks yatesco. I was already implementing something with wizard controller but I have some problems.
I have 2 objects. First is DataTypeEnumerated and second is DataTypeEnumeratedValue....
I'd like to make 2 forms of which the first will open the second. The second form will then be used to enter some data which will then be passed to the first form. Data should be bean or list of...
I use hibernate tx manager and transactional proxy bean in a spring 1.2.3 and hibernate3 environment.
When exception is thrown during transaction, catch block is not being called at all with tx...
I already have those drivers, 10.2.0.1.
Where should i set region?
Hello to everyone.
I'm using oracle 9i spring 1.2.3 and hibernate3 and I have a problem with inserting a BLOB. I get "data size bigger then max size for this type". I found out that it works with...
Here is the mapping file
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">...
Hi everyone
I have a qustion about transactions.I'm using Spring in conjuntion with Hibernate and Oracle 9i.
I'm using HibernateTransactionManager
<bean id="transactionManager"...