Getting the same issue. Try jdts driver too.
roo> database introspect --schema myproject
No Spring Roo add-ons were found that offer a similar JDBC driver
JDBC driver not available for...
Type: Posts; User: watcher; Keyword(s):
Getting the same issue. Try jdts driver too.
roo> database introspect --schema myproject
No Spring Roo add-ons were found that offer a similar JDBC driver
JDBC driver not available for...
I had a dependency that was excluding spring
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camel-version}</version>
...
I have an existing roo project that is now causing issue when I start via command line.
NullPointerException at org.springframework.roo.project.Dependency.<init>(Dependency.java:117)
roo...
Hi
I'm developing a swing application and I'm looking for some ideas how to implement an auto login feature using spring security.
The use case I wish to implement is as follows.
1. User logs...
I got a similar error , my problem was I forgot to add a primary key to my table.
The reason I pointed you to the website is the developer of bluebell seems to be trying to acheive the same goals.
See here
...
Maybe check this out
http://code.google.com/p/bluebell/
LievenDoclo
I cant seem to find a jira task for this task. Could you point me to it so we can follow its progress.
Will the next release include this feature?
The reason I'm asking is we...
Jira raised
http://jira.springframework.org/browse/ROO-652
-Paddy
I've attempted to add liquibase plugin to a ROO project to manage database schema changes etc.
<plugin>
<groupId>org.liquibase</groupId>
...
Yes Ben
When I created a new Spring Roo project it did detect the AspectJ and asked me if I wish to enable it.
I was too quick to select No.
Sorry, User Error on my part.
One of the issue I had was that I didnt have Aspect Weaving enabled in the IDE.
I'm trying to write a custom finder.
How do I get reference to the entityManager from my Entity bean.
Am I missing something?
@javax.persistence.Entity...
Has anyone got an simple example of integrating Spring security with the Spring Rich Client?
I think it would be a good task to add it to the sample applications that come with Spring-RC.
Many...
I've downloaded the sample applications for version 1.1.0 but I'm getting the following error when trying to edit a contact from the sample application.
To get the sample to this point I had to...
I've just successfully run the rsvp sample detailed in the blog.
http://blog.springsource.com/2009/05/27/roo-part-2/
Then I decided to create a new roo project.
roo>create project...
I have a use case that I like to get some ideas as how best to implement it.
Here goes.
Flatfiles are uploaded via a web portal. These files are currently parsed and loaded into a database table....
I've added a Jira entry for this issue.
http://jira.springframework.org/browse/INT-185
Thanks Mark for your help.
Yes, the file is already processed by a another application (PERL). When the file is processed by the perl application it will be placed in a folder where I had hoped to use the filesourceadapter to...
Let me try and rephase the question.
I want to poll a directory that contains files that will be uploaded into a database. The files will have a certain naming convention.
c:/temp
...
I've download the filesucker example posted in the blog section.
I see that the FileSucker class processes the polled directory.
However the method param is a String.
@Handler
public...
.....
private GeneralDataFormController c = null;
private MockHttpServletRequest request;
private ModelAndView mv;
...
public void testCancel() throws Exception {
...
Thanks Dave
I removed the DispatchEventMulticaster class
<bean id="applicationEventMulticaster"
...
Here's how I implement it.
Here's my Spring mvc controller publishing an event
FileUploadEvent fileUploadEvent = new FileUploadEvent(this, user, fileUpload);
...
I have a FileUploadController that uploads a file from the web and stores in a local directory on the web-server.
Currently I'm using Spring Event handling to publish an event that sends an email ...