Hello,
When creating a ROO application, can the jars be copied into a lib folder (like "WEB-INF/lib" and have the maven projects reference those jars?
This will make the application self...
Type: Posts; User: bloudraak; Keyword(s):
Hello,
When creating a ROO application, can the jars be copied into a lib folder (like "WEB-INF/lib" and have the maven projects reference those jars?
This will make the application self...
I understood your explanation the first time.
Lets assume you consume REST services of a third party solution of which you didn't know the underlying technology or had no knowledge of its...
Nothing appears in the debug log related to the issue.
To reproduce, create a Java class with a native implementation (NativeImpl). When calling System.load, or System.loadLibrary, point it to a...
I created ROO-629 requesting that ROO applications be "environment" aware.
Stefan,
Isn't "http://localhost:8080/petclinic/owner/99" the actual resource?
If neither http://localhost:8080/petclinic/clown nor http://localhost:8080/petclinic/owner/99 exist, why return...
Thanks Stefan,
I have no problem with the behavior when running in development. The more information the better. I just don't approve how it behaves in production. Changing the configuration...
I'd also like to suggest that the stack trace etc belongs in a log, not the user interface. Data access errors should be totally shielded from the user as they can take no action.
You should...
Hello,
I noticed that exceptions bubble up to the user interface without any discretion. While its acceptable while doing development, its unacceptable for production systems, especially when that...
Hello,
Currently when one requests an entity that doesn't exist, a normal page is generated stating the entity wasn't found. On the other hand, if any other resource is requested from the server,...
I'd like to follow the YAGNI principal.
The original problem is that we need to allow a search engine to index all the entities. To solve it, we can add the page as part of the URI. However...
Hi Stefan,
Components of urls, such as "en_us" in "http://localhost/travel/en_us", are often used to filter information. Page information are similar. Its done to keep urls simple, clean, human...
Hello,
Looking at the show page, I noticed that the page doesn't populate the metadata correctly. This means that a search engine will index each record with the same title and description. This...
Hello,
After creating several hundred records to a application that was generated by ROO, I noticed that the paging isn't implemented such that it will be indexed by a search engine. For example...
Hello,
Could you consider installing SpringSource Tool Suite as a package, rather than a folder? This will enable me to simply select "Applications" then SprintSource to launch, it rather than...
Hello,
I looked at the output of roo and notices that urls (or parts thereof) is being duplicated in the views and controllers. What I did was create a few final strings on the controller, so...
Done. The attachment is part of ROO-8.
Hello,
Attached is the SVN diff (inside the zip) for DRY forms. All it really does is create a form tag for an entity and use that tag in create.jspx and update.jspx.
If this becomes part of...
Thanks, I added my comments.
The issue ROO-482 was raised.
There needs to be much tighter integration between Roo and the source control systems. Look at the "-c" and "-g" command line options of the RAILS command-line.
Hello,
Does anyone have a good tutorial how to use version control (such as subclipse) with Roo projects?
I installed STS and added subclipse so I can play with Roo. I am having a hard time to...
Hello,
I have used rails in the past and enjoyed the integration its tools has with SVN. Any chance that a future version of the ROO console can automatically add/delete generated files in SVN? ...
Hello,
Do any reference implementations exists on how to develop a brand new application in Spring 3.0? If not, may I suggest that you develop some reference implementations that uses Spring 3.0...
Hello,
Consider the following RooEntity:
@Entity
@RooJavaBean
@RooToString
@RooEntity
public class Image {
Hello,
When generating the scaffold views, both the create.jspx and update.jspx views contain the same form. In order to facilitate code reuse, shouldn't the form be defined once as a tag or tile...
Hello,
Is there a way to exclude dojo from the generated views? Just updating the layout isn't ideal since there is script tags in every view. I would suggest providing an option to generate...