I created a Roo project with Roo 1.2.2. Generally speaking, things were working fine. I've since had to make updates/modifications to my pom and was working at business logic.
Now, when I open a...
Type: Posts; User: benze; Keyword(s):
I created a Roo project with Roo 1.2.2. Generally speaking, things were working fine. I've since had to make updates/modifications to my pom and was working at business logic.
Now, when I open a...
Hi Tom,
I'm encountering the same issue(s) as you. Did you have any success getting the custom repo working?
Thanks!
Eric
I'm new to Spring data JPA and am trying to understand how to best use it with QueryDSL. Without QueryDSL, I know I can easily create any queries in my repos using @Query annotations. That keeps all...
I'm new to Spring Data JPA and I've got a JPA Entity with a created_on date field. Is there someway I can create a JPA query using QueryDSL to get a distinct set of years?
In standard SQL, the...
Sure - I do that already, but part of the beauty of Roo is that it does things automagically for you, and even more importantly, it removes unnecessary clutter from your code. Something like a...
Hi,
I'm new to Roo, but one of the things I like about it so far is that it eliminates a lot of the tedium and boiler-plate code. However, I'm amazed that I am unable to find a simple Roo...
Hi,
I'm brand new to Spring Data and trying to get my head wrapped around it a little. I understand that everything (ie: all queries, logic, etc) is generated from interface class, which is...
Hi,
I just installed Spring IDE 3.1.0 on Indigo 3.7. When I try to create a new Roo Project, if I specify an external location, the project is not properly created. A little digging around and I...
Thanks. My only problem with the one-jar plugin is that it creates a separate artifact with a one-jar.jar extension, so that when you install/deploy, it still deploys the original jar file (and not...
I have a Maven based Spring-WS client project that I want to package as a single jar. In eclipse, everything runs properly. When I try to package it as an executable jar, I get ClassNotFound...
Hi,
I'm sure I'm going about this wrong. Any pointers would be greatly appreciated.
I have a Spring-WS client that I am writing using the WebServiceTemplate. The service that I am consuming...
Hi,
I'm trying to write my first client using Spring-WS and am getting a little confused at some basics. I need to insert a SAML token into the header, and I've noticed that the...
Hi,
I'm new to Spring-WS, and slowly getting my head wrapped around it. Right now, I'm writing a simple client to communicate with an existing WS. I'm using the WebServiceTemplate and the...
Thanks for the insight. That actually makes a lot of sense. I don't know who owns the plugin, hence my scattering of posts here and there trying to find the right group(s).
Please post the Jira...
Sorry; I didn't realize that. I didn't want to add congestion to the STS forum with what appeared to be an m2e/AJDT issue. But if it is the same people, I would rather just keep everything...
Thanks for the reply. Indeed, the stackoverflow link is mine. I don't have any explicit parameters set for LTW, so unless AJDT automatically enables LTW for launch configurations, I don't think I'm...
Hi,
I have a Spring 3.0.6 project which uses some AspectJ annotated Spring aspects for Spring AOP. Everything works fine. My JUnit tests compile and run as expected, and all my aspects are...
I did a little further investigation and found the following. My bean is implemented as:
@Aspect
public class ServiceErrorInterceptor {
/**
* Logger
*/
Hi,
I've run into a strange problem that I am having difficulty tracking down.
I have an class (ServiceErrorInterceptor) defined as an @Aspect which is instantiated via XML configuration as a...
I'm using Spring 3.0.6, and have created a Spring profiling aspect that I am applying to a significant number of beans using JDK proxies.
However, due to the need to access protected methods in...
Hi,
I'm looking at using the SimpleThreadScope in a JAX-WS WebService as I feel it most closely matches my needs. Given that it is a WebService, I am not comfortable using the Request scope given...
Hi,
Did you ever find a solution to your issue? I'm running into a similar situation and am looking for a solution for it as well.
Thanks,
Eric
Hi,
I apologize if this is not the right forum in which to ask this question, but I believe that the Web Services forum is geared specifically to Spring-WS, which this is not.
I have a JAX-WS...
I've got a JAX-WS WebService that is using Spring 3 IOC. Note that I am NOT using Spring-WS. I have coded a Spring Aspect to handle any exceptions and ensure that they are properly handled in the...
Hi,
I should have pasted my JUnit code as well. This is the first time that I've used the Interceptor as an AOP advice, so I am not sure if I need to do anything special with my JUnits that I...