The ProceedingJoinPoint.getSignature() method returns everything you need to get the actual class name, method name, return type and parameters for the joinpoint. Java aspect programming is a powerful tool. In this post I will show you some quick tips & tricks related to the ProceedingJoinPoint Java class from the AspectJ framework. I will only cover...
Tag: java
HQL Current Date And Other HQL Date Functions
This post will answer all you questions about how to use HQL current date and other HQL date functions. If it does not, drop me a question with details about your HQL date function related problem and I will try to find the solution for you. Let’s dig in! How To Get Current Date In...
Hibernate HQL BETWEEN Expression
In this post I will show you how to use the Hibernate HQL between expression to write and execute some simple HQL queries. HQL is the Hibernate Query Language that allows you to query your Hibernate data layer using similar syntax to the relational database query language SQL. SQL offers a number of operators and...