If what we are talking about still brings the same error, I suspect something in your tags or JSPX files.
I would maybe try copying your tags out of the way and replacing them back with the old...
Type: Posts; User: krimple; Keyword(s):
If what we are talking about still brings the same error, I suspect something in your tags or JSPX files.
I would maybe try copying your tags out of the way and replacing them back with the old...
To deploy to Tomcat7 inside of maven:
Add this to <build>..<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
...
Great info. I'm now thinking screwed up STS workspace around the Tomcat instance files.
Ok, let's get out of the tool for a sec then.
Go to the command line, make sure you have Maven 3.0.4 (or...
Whenever you set up a step-by-step flow, WebFlow is a viable and more flexible option. You could of course hard-code the password flow too. Finally, you could use a javascript component to do the...
Your problem is storing things in the Model and expecting the output to contain the model itself. I don't think it does. @ResponseEntity<String> takes over and whatever you stuff in there goes.
...
Also quick note - to make it null, just delete the entry from the dropdown. I think there are some better ways to do this - including not setting a default value in the dropdown itself, and then...
The problem is the way the Select tag was built. It uses a Dojo dijit (widget in Dojo javascript terms) called FilteringSelect. (see http://dojotoolkit.org/api/1.9/dijit/form/FilteringSelect)
In...
What version of Roo was the add-on coded for and what Roo version are you developing under? Between Roo 1.0, 1.1, and 1.2 some of the internals of the add-ons and add-on jars changed, so it may be...
Are you running on glassfish, weblogic or some other app server that aliases the XMl parser for its own internal use? That error seems like a container error but not a standard one that I know of.
...
You should just run "roo quit" - that will fire up Roo, generate any missing .aj files, then exit the shell.
Also, another quick note - Springsource used to sell a server called 'dm-server' that is now Eclipse Virgo. I have a good friend at Chariot who is a committer (Dmitry Sklyut) and this project is...
Hoping this helps, have you looked into the Gemini Blueprint project? It was called Spring-dm. This allows you to mount your Spring beans in an OSGi container. I'm not sure if Roo can support this,...
FYI this is now fixed for the built-in dependencies - Roo team member Alan Stewart patched the Roobot server and dependencies are downloading again. Just in case you didn't subscribe to the top forum...
Any time, Niels.
I wasn't sure about Ubuntu.
BTW to get you going after you download...
ln -s <path-to-roo>/bin/roo.sh /usr/local/bin/roo
(or the reverse, I can never remember those...
Could you try this:
Let's try to get any STS/Eclipse issues out of the way...
right-click on the top of the project, select 'Refresh'
right-click on the domain module, Build... Maven... type in...
Verified. I will notify my contacts at VMware and see if anyone can do something quickly. But for now:
Do you have a mac? If so, and you're using homebrew (a MUST install software packaging...
Comment appreciated, FreeCoffee.
Yes, I have plenty of thoughts about where Roo is now and what it could do in the future. Writing a book for two years tends to do that to a person. I have a...
I get the feeling we'll have to wait until the Pivotal initiative is sorted out to see what Roo has in store for the future. I agree, I think we should have a way to contribute to the project to move...
Siegfried - I will be glad to help. First of all, the ones you refer to in the beginning are available in the Roo installation under scripts - they are just text files with the samples themselves.
...
Take a look at the Roo tags - they embed Dojo directly.
Here's how I did it (see Chapter 7 of Spring Roo in Action for some details on how to do Roo and Dojo in more detail):
<script...
[/QUOTE]
You're on the right track. Never edit the .aj files - they are auto generated. Instead, use STS to push-in refactor the MVC methods back INTO the controller class itself. (Or you could...
This sounds like maybe a tooling problem. Why not run Tomcat via maven:
mvn package tomcat:run
That should boot tomcat and deploy the web app. See if you can get it going that way.
If you...
Hi Greg,
Not that I've heard.
At some point a good lite MVC add-on would be really good to put together - something that functions closer to Grails, and that has a pluggable JS component...
Good news is, it's just a Spring/JPA application. The big question is whether you have a bi-directional or uni-directional one-to-many. In other words, do you have just a @OneToMany or a...
Which version of Roo are you trying, and what add-on? Do you have a cut/paste text of your interactions? I tried installing a few add-ons with Roo 1.2.3 and the RooBot was up today.
Ken