Hi,
i have a problem with pointcuts not advised. I think it has something to do with how aspectj is matching pointcuts. This is how my class structure looks like:
...
Type: Posts; User: garz; Keyword(s):
Hi,
i have a problem with pointcuts not advised. I think it has something to do with how aspectj is matching pointcuts. This is how my class structure looks like:
...
ok i have now added the following to my web.xml:
<filter>
<filter-name>openSessionInViewFilter</filter-name>
<filter-class>
...
Hi,
i have a problem that i can't seem to solve on my own. I'm using Spring and Hibernate and i want to add transaction support via schema based AOP definitions. I'm not using annotations.
As...
yes thats totally right. i'm already using the manager class and when i call a method on it it fails because hibernate is involved and that doesnt work without a transaction. here is a snippet of my...
hey denis,
thx for your reply! i'm very happy. :)
ok what you say is that this should work, but i don't really understand what this has to do with the classloader and how i'm able to influence...
Hi,
i'm using declaritive transaction management. i have a jar-file that contains the service-objects which in turn persist my domain-objects with the help of daos. now i want to add transaction...
or maybe you can tell me, to what classpath is referring to? obviously not to WEB-INF/lib? i'm using glassfish 2.1 with eclipse galileo release, if that matters. or is it not possible to refer to...
hey, can you tell me how to load a mapping file from a jar? i dont even know this one and i cant find any recent resources explaing this, just from 2004 and those approaches dont work anymore. thx
...
ye ye i realize, spring-community is noob-unfriendly. i already got a hint for this at my first post: http://forum.springsource.org/showpost.php?p=240338&postcount=7
yeah it's so clear, why...
ok like i said, i found out that glassfish even crashes when i dont add a Book-object. I just need to call my forms a few times and its over. so i completely removed Hibernate-persistence and...
so, i now sad to myself, ok, lets not use the bidirectional association, just make it unidirectional, i can create a query if i have to navigate from the BookCategory-side:
public List<Book>...
hi,
i have some class BookCategory that contains classes Book. Now it's possible to add new Book-objects to a BookCategory.
class BookCategory {
Integer id;
Map<String, Book>...
"2) Usage of HibernateTemplate isn't the recommended approach anymore"
why is that so and what is the new recommonded approach?