When comes version 1.5 which will include support for LCDS?
Type: Posts; User: vlad2005; Keyword(s):
When comes version 1.5 which will include support for LCDS?
Yes you are right. For my particular situation using HibernateAssembler. But, as I said above, are invoked the same method for each entity ( createItem, deleteItem ..). Only difference it's...
I have an similar situation: Flex with LCDS 2.6 and hibernate.
I want to impose some security conditions for each entity so, some users can only select data, others have full access to CRUD...
What news with Spring and LCDS? I don't see anything long ago.
See what post Cristophe Coenraets on his blog, about test-drive with spring and BlazeDs integration. Put in "lib" directory same files that have and Cristophe. It's an point of start.
See what u get...
I have one suggestion!
I think that using hibernate template, it's more convenient that jdbc template. But hibernate it's a little inflexible.
One problem, when i try to insert or update. If an...
Great!!!!!!
Durden, can u post an example, about how to use this pattern?
For a classical example users-groups or person-company, where have relation ManyToOne and OnetoMany.
I have problem with lazy loading,...
you're welcome!
I forgot, but if u want to specify what entity are mapped, u can use "targetEntity" property. Declaration for for @OneToMany it's:
public @interface OneToMany {
Class targetEntity()...
Probably, u have an bean that instantiate sessionFactory, where u set all hibernate parameters. There need to map and java classes. Personally, i use annotation, because it's more convenient, and i...
i have an class that implement HibernateDaoSupport.
I use annotations, and my class expose service for flex. So i have something like this
@Service("exportService")...
I don't know if this can be, but why use both annotation, one-to-many and CollectionOfElements. Documentation say that CollectionOfElements it's replacement for one-to-many.
Second, in relation...
I'm interested in remoting integration with LCDS. But i run into problem, because got an error, something about "licensing". I use LCDS on single-core computer, so no problem with LCDS license...
I use hibernateTemplate, and i want to restrict access on update some properties.
So, supposing i have an simple method:
public void updateZona(Person p)
{
getHibernateTemplate().update(p);...
HibernateTransactionManager
Any news about using Spring with LCDS?
I got solutions. Seem that it's about how eclipse export jar file.
To resolve this, need to check "Add directory entries" option when make export in Eclipse.
Tested and worked!
Thanks for all...
I find solutions, few minute later :p.
Seem to be an issue related to Eclipse. If export jar from eclipse, be sure that check "Add directory entries". This it's not check by default. I test that,...
same problem. Posted recently, but i don't get any solution yet.
Ok, i found where it's the problem. Spring security expect authorities with prefix "ROLE_". So that it's the reason why i get "Access denied" response, because my role it's simply "SUPERUSER".
Very...
I resolved, but because i'm an beginner on spring, i don't understand very well all. So now, i have an separate file to configure security, and another for applicationContext.
Anyway, after i fix...
I resolved. Thanks!
i try to implement security for an method using @Secured annotation
So, i have an config file, where it's configured security:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans...
I get same error, but with <context:component-scan base-package="spa" />
Namespace point to spring 3.0. When point to 2.5 i don't get that error. Instead, i get an error when i use...