GIN brings automatic dependency injection to GWT client-side code.
2
votes
1answer
36 views
Difference between singleton and eagersingleton for Gin or Guice?
I was wondering what is the different between singleton and eagersingleton for Gin or Guice?
1
vote
1answer
58 views
GIN AssistedInject issue with factory “Unable to create or inherit binding”
I am getting an strange error which I cannot get past when using Assisted Injection:
[DEBUG] [project] - Rebinding com.gwtplatform.mvp.client.DesktopGinjector
[DEBUG] [project] - Invoking generator ...
0
votes
1answer
55 views
Integrating a GWTP project with a standard GWT project
I have a GWTP application which has no entry point because I don't ever need to run this application on its own. Rather I want to use it within a standard GWT application which has an entry point, ...
0
votes
1answer
37 views
Class.getSimpleName NPE with GIN, GWT 2.5
I read somewhere that GWT 2.5 now allows Class.getSimpleName.
I am using GWT 2.5, GXT 3.x.
This gave me GIN injector NPE:
GWT.log(this.getClass().getSimpleName() + commentString);
Is getting the ...
1
vote
1answer
20 views
Posgresql tsvector parse include xml tags in search
We store "broken" xml in a text field in a table. Fixing xml is not currently possible, so normal use pattern is to search through it using ~* E'my_regex' in where clause. The challenge is that size ...
0
votes
1answer
68 views
GWT Injection : need good practice
I often need a client bundle and some i18n-ed messages in presenters and views.
I would like to know which is the best way to get them : Injection or Singleton?
Solution 1: Up to now, I used to get ...
0
votes
0answers
57 views
GIN Inject @Singleton into widgets fields
I have read a TON of stackoverflow and other resources trying to find an answer and maybe I just don't get it.
I am trying to inject a GIN @Singleton into several widgets and classes in my ...
1
vote
0answers
65 views
GWT GIN to bind many ClientBundle with ImageResource in one picture for fast loading application
I am using GWT in my application. For caching pictures i use ClientBundle with ImageResource. I have many ClientBundles like this:
public interface MenuBundle extends ClientBundle {
...
0
votes
1answer
74 views
GWT: Provider vs AsyncProvider
what is the difference between provider and AsyncProvider in GWT. My understanding is that both are used for code splitting and delayed instantiation.
so I am not able to decide, in which case we go ...
0
votes
1answer
68 views
smartgwt + gin Code Splitting
I am looking for example to use code splitting with gin and smartgwt ...
In my simple application I have 2 modules AutoLoadModule and WindowModule. In my simple app I just need to load a window when ...
0
votes
0answers
34 views
gin inject and read config from async service
i have got module and this module only read config from server via async callbacK:
@Singleton
public class Config {
private ConnectionSettings connectionSettings;
@Inject
protected Config(final ...
2
votes
1answer
106 views
GWT Gin Async Service Injection
I have a question about using Gin to inject GWT Async RPC service.
I have two classes both using the same Async service:
class TheViewA {
@Inject
public TheViewA(MyServiceAsync ...
-1
votes
1answer
93 views
How to perform full text search on a gin postgres index in doctrine 2.2?
Is there a simple way of doing this in doctrine, or am I going to have to do a native sql query? If someone could point me in the right direction, it would be appreciated.
0
votes
1answer
58 views
how can I detect gin and gist
how can I detect GIN and GiST indexes in postgresql? I am looking for if an database of postgres use fulltext. I think that a table use GIN o GiST then is using fulltext.
Thanks you.
Hello, ok I ...
0
votes
1answer
75 views
GIN injection of field in abstract class
I'm working in some GWT application in which I have a hierarchy where I have an abstract presenter with some common functionality of derived classes. Something like:
public abstract class ...
2
votes
1answer
188 views
JUnit test with GIN injection, without GWTTestCase and overloading gin modules?
I designed a new project using Guice/Gin so I could make our code more modular and swap-able especially when testing.
However, I am not able to find out how to make this work in practice. I was ...
0
votes
0answers
42 views
Custom behavior when injecting remote service using GIN
I am trying to make it so that everytime time a class asks to inject in a GWT RPC Remote service, GIN will then provide the service after setting a custom RPCRequestBuilder on the service so that the ...
0
votes
0answers
43 views
add project-html as dependency for project-java in playN
I am trying to use gin and guice in my playN game. I want to have the module definition in one project, and as suggested in this post: How to use Guice bindings in Gin module for PlayN?
I defined the ...
0
votes
1answer
93 views
GWT dev mode throws ArrayIndexOutOfBoundsException when compile GinjectorImpl.java
I'm getting following exception when open my GWT app in development mode. the exact same code can compile successfully using mvn gwt:compile
Caused by: java.lang.ArrayIndexOutOfBoundsException: ...
0
votes
1answer
50 views
Gin injecting in a shared (client server) object - “IsTreeItem”
I have an object that implements "IsTreeItem". The Object is displayed as a two level tree item. Each tree item is built with a check box.
I need to know when a check box is changing value - so i am ...
2
votes
1answer
150 views
GWT GIN Provider compile error
I am trying to configure my GIN module to bind ActivityManager requests to a DefaultActivityManagerProvider:
import com.google.inject.Provider;
public class DefaultActivityManagerProvider implements ...
0
votes
0answers
195 views
GWT-GIN rebinding error or Google JAR hell?
I am trying to use GIN with a GWT app for the first time and am running into what I believe is a JAR hell issue. I have the following project directory structure:
MyApp/
com.myapp
...
1
vote
1answer
156 views
How to bind essential GWT components with GIN?
I've followed the basic setup instructions on the GWT-GIN tutorial page. I'm on Step #3 (Declare bindings) and am trying to figure out how to use GIN's Binder API.
public class MyModule extends ...
0
votes
2answers
136 views
Can I pass arguments into GWT Module constructor?
I have the following GWT module:
public class FizzModule implements EntryPoint {
private Buzz buzz;
public FizzModule() {
this(null);
}
public FizzModule(Buzz bz) {
...
0
votes
1answer
110 views
How to get Google GIN working with Google-Eclipse plugin in DevMode?
I am experimenting with my first GWT app that uses GIN. I am essentially mimicking the exact same source code example found in their Getting Started tutorial. At the end of that tutorial, the author ...
3
votes
2answers
194 views
GWT.create(Class<?>) vs. GIN?
It looks like GWT has its own baked-in DI mechanism (GWT.create(Class<?>)). What benefits does GIN offer on top of this? Should you ever use them in conjunction with one another, or are they ...
2
votes
1answer
214 views
retrieving keys from a GIN index on a tsvector column in Postgres 9.1
I've got a collection of documents that I'd like to do some full text searching on in Postgres 9.1, so adding them as the contents of a tsvector and then creating a GIN index on this column seems ...
0
votes
0answers
61 views
GWT - GinModule use the same interface for different implementations
I have this GinModule:
public class LocalizadorGinModule extends AbstractGinModule {
@Override
protected void configure() {
...
1
vote
1answer
110 views
Using GIN-created resource in UiBinder xml
Our application uses GIN to instantiate its GWT Resource bundle dynamically. This is done to enable loading different stylesheets at runtime for different display modes. In general, this means that I ...
0
votes
1answer
119 views
What's new in GIN 2.0 [closed]
Has anyone tried the recently released version of Google Gin (2.0)? I would like to know the new features in the release and any usage experiences with GWT.
1
vote
1answer
66 views
Nested View's Presenter not getting initialized and not being able to handle its view's events
I am facing an issue, when I do inject a nested view into my base view's constructor using @inject. I am not able to handle the nested view's events in it own presenter. Because of which I need to ...
0
votes
1answer
358 views
Deferred binding failed for 'com.mycompany.client.gin.ClientGinjector'
I'm really having a hard time fixing the error below as I have properly added the the jars and the <inherits ...> in the gwt.xml file
0
5:27:22.011 [ERROR] [myapp] Failed to create an instance ...
0
votes
1answer
67 views
Can you inject a custom exception (or its provider)?
The standard Exception has no default constructor (or a way to set the message after instantiation). If a custom exception is based on it, can the derived class be made injectable?
public class ...
0
votes
1answer
91 views
Can one avoid injecting Places when using RequestFactory's stableId() as state information?
My Gin-injected GWT application uses RequestFactory together with Activities and Places.
To tokenize RequestFactory's stableId() inside Places, I inject the RequestFactory. That gives the class ...
0
votes
0answers
226 views
Deferred binding failed for GWTP PlaceManager
This is the error I get when running my application:
java.lang.RuntimeException: Deferred binding failed for
'com.gwtplatform.mvp.client.proxy.PlaceManager' (did you forget to
inherit a ...
0
votes
0answers
278 views
'GinjectorGenerator' threw an exception while rebinding '…ClientGinjector'
I'm getting this error when running my web application that use GWT, GWT-Platform and App engine:
Generator 'com.google.gwt.inject.rebind.GinjectorGenerator' threw an
exception while rebinding ...
0
votes
0answers
74 views
getting exception while integrating GWT GIN with Maven
getting following exception when running using maven
[INFO] auto discovered modules [com.infor.ion.boddesk.ui.sample.Employee]
[INFO] Compiling module com.infor.ion.boddesk.ui.sample.Employee
...
0
votes
0answers
84 views
Automatically generate a generic widget in GWT using Gin?
I have to kind of copy all widgets and give them some extra functionality for providing dynamic translation support in my GWT App. I'm using GWT 2.4.0 and Gin 1.5.0.
AbstractLocaleAwareWidget ...
2
votes
2answers
1k views
How to use injection via GIN with UiBinder and Widgets?
I'm using GWT 2.4 with gwt-platform 0.7 and gin 1.5.0.
I've built a library for dynamic (live) translation of my GWT application. So every widget will get notified when the LocaleChangeEvent gets ...
0
votes
1answer
73 views
GWT-GIN vs Raw Guice
Is there any reason why I can't just use Guice for DI inside a GWT application? If so, why? If not, what does GWT-GIN really offer that POG (plain ole' Guice) doesn't?
4
votes
1answer
509 views
ActivityMapper with Gin and AsyncProvider
I've just started a project built with the new GWT archetype.
ActivityMapper looks like:
public interface Factory {
HomeActivity homeActivity();
GreetingActivity greetingActivity(String ...
0
votes
1answer
193 views
GWT Platform gatekeeper user needs to sign in again on page refresh
What would be the best practice to keep the user logged in if he or she refreshes the page?
Assume that the user signed in already.
At the moment the gatekeeper is performing its duty but when the ...
1
vote
1answer
104 views
Calculated constants in Google Guice
I want to be able to achieve the following using guice/gin:
Get all sort of constants from the server (user settings, language, etc)
Bind those constants to "Named(###)" in a guice/gin module
inject ...
2
votes
1answer
488 views
Gin AssistedInject: Deferred binding result type 'Foo' should not be abstract
I'm trying to use AssistedInject with Gin in GWT 2.4.0:
public interface ElevatorButtonFactory {
ElevatorButton create(int shownFloorNumber, Action<Integer> onClick);
}
@Inject
...
2
votes
2answers
207 views
Mocking in GWT application showcase with the help of GIN
I need an example of well-structured full-stack GWT application written in the best practices: with MVP pattern usage, GIN modules (at least 2: production module and the mocking one for tests), JRE ...
0
votes
2answers
793 views
Error binding view to presenter?
I'm getting this error when running GWT application:
java.lang.AssertionError: This UIObject's element is not set; you may be missing a call to either Composite.initWidget() or UIObject.setElement()
...
2
votes
1answer
205 views
Dynamic GWT Modules with Guice and GIN in execution time
Me and one friend are thinking in build a pluggable applications with GWT, guice, GIN, JPA2 etc...
In our idea, we will have a basic web app, with login, permission management, basic configurations, ...
0
votes
1answer
2k views
Deferred binding failed
My application is throwing:
java.lang.RuntimeException: Deferred binding failed for 'com.mygwtapp.client.gin.ClientAppGinjector' (did you forget to inherit a required module?)
on this code inside ...
0
votes
2answers
476 views
Field level injection with Gin
I'm trying to do field-level injection so I don't have to pass "models" when my controllers are instantiated, like,
UserController controller = new UserController(/*No need to pass models here*/);
...
0
votes
1answer
107 views
Dependency Injection for MVC
I know DI is mostly used with MVP pattern however, where does Google Gin fits into a Model-View-Controller framework/pattern?
For example, usually for a MVC a View holds references to the Model (in ...