Hi,
I have a application with roo 1.5 and gwt, I need do a operation just when data load finish, in a specific view. I tried debug the application but is very complex locate the exact point this...
Type: Posts; User: titobundy; Keyword(s):
Hi,
I have a application with roo 1.5 and gwt, I need do a operation just when data load finish, in a specific view. I tried debug the application but is very complex locate the exact point this...
Thanks to gkamalless from stackoverflow for his quickly help
Solution:
Try putting an @Transactional annotation on the run method of your thread. If that doesn't work move the two lines into a...
Has anyone tried to call an entity JPA within a thread?
I think the problem is that my main thread finishes before the ThreadIngresarConsulta.
Any idea?
Hi,
I made a Thread class (extends from Thread) because I need call to async operations. But when I tried to get this, for example a property from persitence class occurs a exception. This only...
But It's not so simple, when I did the change only shows the header, entities were hidden...
Hi,
I found the following solution:
0. Make sure your webapps\*.html file registered the *.nocache.js and *.css
1. Disable your maven Dependency Management
2. Unchecked Google Web setting
3....
Hi,
Is it possible to change the RootLayoutPanel to RootPanel in the ScaffoldDesktopApp?
I share with you the following link (pay attention to the chapters 3-5):
http://gwtsts.blogspot.com/2011/02/rapid-application-development-using-gwt.html
Hi,
How do it create gwt components with roo? Is there any documentation of this process?
I need create a customized menu for the entities. I don't need show all entities, because it will...
Does anyone has created a portlet for liferay 6.0.6 using spring Roo and MVC?
I think the problem occurs only when the method name has prefixed 'get'. I changed the name of the method by anyFullName and the problem was solved. it was only with gwt and don't mvc.
Hi,
I'm trying to create a transient method in an entity created with roo, but presents problems when I run deploy.
ie:
@RooJavaBean
@RooToString
@RooEntity
I think I discovered the problem, I needed to add the annotation to the attributes
ie: @ManyToOne
private Region region;
I attached the log.roo file and the zip with the entities generated from enterprise architect. Now after run the gwt setup, I deleted the gae files and then I deploy aplication shows me:
...
After run gwt setup
I have a problem when using gwt in a roo project.
I made the Roo project.
I made persistence and setup properties (database name, user, pass).
Then, I copy the files (entities) generated...
Hi again,
I did the steps that tell me and I could access the Client class (external jar with dependecy add), but then to make a debug, I realized that I skipped the call to persist.
1. Client...
I tried to add the dependence into pom.xml, but did not know how to reference the jar physically, I'm new to this, you give me an example?
I have two roo projects.
- In the first project I'm using roo 1.1.3 for creating the model (Entities) with gwt.
- In the second project I'm using gVNix 0.7 (roo 1.1.4) for create the web...
Hi,
I have a class with a method wich returns records from a database with JPA in a Roo project. I want to create a webservice (with bottom up Java bean Web service) in a similar way as you would...