Tagged Questions
0
votes
0answers
11 views
Compile-time weaving based injection not working
I've been using compile-time weaving for a while now to get some spring components into a Hibernate component.
@Configurable
public class MultiLingualClassBridge implements ...
-3
votes
1answer
242 views
How to configure a standalone application with Hibernate, Spring, AspectJ build time weaving and maven [closed]
If you are looking for the maven dependencies needed, AspectJ plugin configuration for Spring aspects and build time weaving or a basic configuration of hibernate with Spring check out the link ...
0
votes
1answer
98 views
AspectJ and Wicket throws nullpointer for Injector
I have wicket aspectj application which uses hibernate annotated classes and uses a DAO service layer.
I have developed an updatetask that does not run in an applicationcontext. Therefor i created a ...
2
votes
1answer
476 views
Using Hibernate (JSR 303) method validation to compare parameters
I'm using JSR303 method validator extensivly to validate the inputs to my service layer automaticaly with a little help fron aspectj. One thing that is surely missing is the ability to do cross ...
0
votes
0answers
198 views
My audit aspect does not create records using JPA
I'm using Spring 3.1, JPA 2.0, and Hibernate 4.1...
I have a audit logging aspect that needs to save an audit record to MySQL via JPA/Hibernate. I know I have my JPA configuration down because I can ...
0
votes
1answer
468 views
Gwt + Spring Security integration
I'm building an application with (smart)gwt, hibernate (actually gilead, or hibernate4gwt) and Spring Security.
I'm pretty new to all of these, by the way.
Everything worked fine until now, but I've ...
0
votes
1answer
431 views
@Transactional not working
Trying to implement @Transactional with no sucess in a spring , hibernate project with mode AspectJ
Method on which @Transactional is used.
@Transactional
public void invokeService() throws ...
0
votes
1answer
810 views
Spring AOP Advice for Hibernate managed POJO
I have a parent-child relationship, such as Order to Order Item, which I have represented in the domain model like this:
public class Order {
private int id;
private Set<OrderItem> ...
2
votes
0answers
495 views
org.hibernate.HibernateException: load is not valid without active transaction
I am getting the following error while load a user data.
org.hibernate.HibernateException: load is not valid without active transaction
I am using AspectJ compile time weaving and spring 3.O. and ...
0
votes
2answers
769 views
Spring Annotation driver Transaction with AspectJ problem
i am using AspectJ compile time weaving and spring 3.O. and Hibernate 3.0...AspectJ weaving is working fine for simple things like logging but this is not working correctly for Transaction
...
9
votes
1answer
316 views
Is it possible to use SBT in a Java project with Hibernate and AspectJ?
What would I need to configure and what would automatically work? As far as I understand using both can be a bit tricky, because both use bytecode weaving. Can I keep using the more convenient ...
2
votes
2answers
2k views
Spring - slf4J : how to automatically log errors and exceptions?
We are using Spring with slf4j and hibernate, I'm trying to figure out a way to log exceptions and errors automatically (i.e without initiating an instance of the debugger in each class), so that it ...
0
votes
1answer
348 views
How to automatically set date_created using spring aop
i've been working on a project in java+maven+spring+hibernate and i wanted to automatically assign the current date to the POJOs before the calling of saveorupdate. i wouldn't mind creating new Date() ...
1
vote
1answer
433 views
Hibernate Annotation + AspectJ -> Attributes names pbs in HQL
I'm looking for a way to use aspects to inject parameters in hibernate annotated classes.
Here is a user :
@Entity
public class User implements IHasCity {
@Id
private int id;
...
0
votes
1answer
755 views
Applying additional aspectj around advice to a spring transactional method
I have a spring 2.5 + hibernate webapp with transaction annotations and everything works fine.
I now want to add a fairly basic aspect with 'around' advice and apply it to my service layer (which is ...