I am getting lots of difficulty in integrating gilead in gwt. Can
someone please send the jars they have successfully used that works
because the one I have downloaded does not work
Please someone help me with this gilead and GWT, it makes one full day that i
trying to integrate gilead into gwt with no success!!!
Thanks
What problems are you having?
I'm using hibernate4gwt
<dependency>
<groupId>net.sf.hibernate4gwt</groupId>
<artifactId>hibernate4gwt</artifactId>
<version>1.1.1</version>
</dependency>
Related
I am new to wicket and dont know how to use mvn, i want to run; http://www.wicket-library.com/wicket-examples/forminput/?2 application. In the link there source codes, so how can i create project and call the jars, libraries and get work the project. Which steps should i follow. Thanks for your helps. Soso
I really think you need to start by learning Maven. It is really simple to learn the basics and it will help you for a big part of your future projects. The time you'll spend learning Maven will allow you to understand your future framework and model your projects the right way. I think it requires less time to understand Maven than a whole discussion here explaining how to run it properly in Eclipse.
Basically, all you will need to do is run mvn jetty:run in the folder of your clone of wicket-examples to get started. Once you got there, grab a tutorial or two explaining the basics of Maven in order to really get started.
After some research I decided to use Apache Wicked framework to write my new application. I downloaded the distribution and found there a lot of modules along with a wicket-core. I investigated the list to find out what exactly may I need for my requirements. All is more or less clear except wicked-request. What is it for? Can somebody explain clearer, so I can decide if I really need it?
If you look at the pom.xml of wicket-core, you can see that core has two main intra-project dependencies:
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-util</artifactId>
</dependency>
<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-request</artifactId>
</dependency>
So wicket-request is an essential module that has just been split from the core to group components dealing with client requests together.
I compiled the version in svn tagged as gwt2.4rc. Now there are a
couple of more libraries than I had the last time. Are the any
instructions on which library is needed for what? I tried it with only
the standard libraries (servlet, servlet-deps, user) but I get the
following error when a requestfactory call is made:
java.lang.NoSuchMethodError:
com.google.gwt.core.client.impl.WeakMapping.setWeak(Ljava/lang/
Object;Ljava/lang/String;Ljava/lang/Object;)
I tried declaring the requestfactory-client and requestfactory-server
jars as dependencies, but i doesn't help. I am using maven to manage
my dependencies.
I would go back to 2.4 beta, but I need the drag&drop features that
were introduced later.
Does anybody has an idea what could be wrong? or any hints how i can
dig deeper into this? I spend a lot of time trying to figure this out
but without any success :(
Do I need to provide more information?
Regards,
arne
Are you sure you deployed the 2.4-rc1 gwt-servlet.jar in your war/WEB-INF/lib ? Also, make sure you override the SDK for the gwt-maven-plugin: http://mojo.codehaus.org/gwt-maven-plugin/user-guide/using-different-gwt-sdk-version.html
That being said:
when using Maven, you shouldn't use gwt-servlet-deps but instead reference org.json:json and javax.validation:validation-api
requestfactory-server can be used instead of gwt-servlet if you only use RequestFactory on the server-side (no GWT-RPC, no SafeHtml, no RegExp, etc.); requestfactory-client is to be used for Java clients (such as Android), not the case here.
I'm trying to set up Nuxeo's examples, but I can't get them working. Does someone succeed in compiling and deploying them ?
I know it uses JAX-RS, but I'm still trying to set up a project with Eclipse to generate bundles, and I'm quite lost. I would be very happy if someone could give me a compiling project, or a link for a simple and clear documentation.
Thanks for your help.
Which examples are you trying to run ?
Did you look at http://doc.nuxeo.com/ ?
Has anyone had any luck rolling a custom GWT jar for Google Collections / Guava? I've tried uncommenting the relevant ant tasks and running them, but I just get empty folders in the JAR. Can't seem to get the include rules right :-/
Remember that we intentionally don't provide this because the library does not work as it should on GWT. If you do it anyway, you might luck out, or you might not. We're working on this.