Tagged Questions
GIN brings automatic dependency injection to GWT client-side code.
12
votes
1answer
2k views
PostgreSQL: GIN or GiST indexes?
From what information I could find, they both solve the same problems - more esoteric operations like array containment and intersection (&&, @>, <@, etc). However I would be interested in ...
8
votes
4answers
4k views
GWT+UIBinder+Gin+Guice+JDO+GAE example
I'm trying to link all this technologies, but there are many isolated examples and I do not have enough experience to link them together
so my questions:
Whether there is a similar example?
Is it ...
5
votes
3answers
530 views
Eliminating GWT ActivityMapper boilerplate
I am using the GWT Activities and Places framework to structure my application and it is turning out nicely. One thing that annoys me though is that the ActivityMapper implementation is (1) receiving ...
5
votes
1answer
361 views
Pros and cons using Gin in GWT
What are the pros and cons using Gin in GWT in comparison with using a ClientFactory?
4
votes
3answers
151 views
Replacing com.google.inject with javax.inject
Is it true that javax.inject annotations can function as direct replacements for com.google.inject?
So that, if I replaced all my current guice/gin annotations with those from javax.inject, my app ...
3
votes
3answers
550 views
GWT, MVP, GIN, code splitting?
How to minimize the amount of code downloaded initially by GWT app user's browser?
Well, just wrap potentially big operations in a GWT.runAsync() call.
However, since our application is using GWT best ...
3
votes
3answers
427 views
Dependency injection not working in gwt 2.1
I have a new project where I am using GWT-Views like Composite, etc.
I have injected the items in the main menu (like ProductList below) using GinInjector. This works fine!
Somewhere I want to have ...
3
votes
1answer
806 views
Using GIN and mvp4g
I'd like to use gwt-dispatch Command Patter implementation in my app. I'm using also mvp4g. How can I make DefaultDispatchAsync available to inject into my presenters using GIN or make it globally ...
2
votes
1answer
169 views
Guice/Gin. How to inject multiple implementations
I have a webapp that use GIN to inject dependencies at entry point.
private InjectorService injector = GWT.create(InjectorService.class);
@GinModules({PlaceContollerInject.class, ...
2
votes
1answer
236 views
GWT - GIN - GWTP - Dispatcher Injection Problem
I am in a situation where someone might be already in. I am using GWTP in my application. GWTP is using GIN as a client side
dependency injection. GWTP also uses Dispatcher mechanism for sending ...
2
votes
2answers
328 views
PostgreSQL - query against GIN index of HSTORE value
I have the following constructor (as a test):
CREATE TABLE product (id BIGSERIAL PRIMARY KEY, ext hstore);
CREATE INDEX ix_product_ext ON product USING GIN(ext);
INSERT
INTO product (id, ext)
...
2
votes
1answer
270 views
Gin Injection Inside Class Generated By Deferred Binding
Here is the problem, I have code being generated by Deferred Binding in GWT, and I would like to use Gin Injection inside of this code.
Initially, I attempted to put a private constructor with an ...
2
votes
2answers
329 views
How to inject a “runtime” dependency like a logged in user which is not available at application boot time?
I'm just not getting this:
I use Gin in my java GWT app to do DI. The login screen is integrated into the full application window. After the user has logged in I want to inject the user object into ...
2
votes
2answers
390 views
Compiling GWT project using GUICE with ANT
I can successfully compile the source, but when I hit this ant task:
<target name="gwtc" depends="javac" description="GWT compile to JavaScript">
<java failonerror="true" fork="true" ...
2
votes
1answer
653 views
GWT GIN HOW TO: injection of remote services
The gin tutorial seems to imply that to inject remote services all you need to do is annotate with @Inject.
Do you you still need to define this in a module somewhere or is the point that you can ...
2
votes
3answers
260 views
Dead Code Detector for Guice/Gin modules?
Usual dead code detectors don't seem to find which defined objects in a Guice or Gin module are not needed any more: is there a simple way to detect this?
For example, let's say I defined a Provider ...
2
votes
1answer
400 views
Gwt-dispatch injection
To use gwt-dispatch we create an object like:
private static final DispatchAsync dispatchAsync = GWT.create(DefaultDispatchAsync.class);
Is there any way to do this with injection, I mean how to ...
2
votes
1answer
218 views
Adding user class to all presenters
I have a hazy understanding of GIN, but have it working for injecting presenters, etc.
I'm trying to inject a self-made "User" class into all my presenters in order to get the currently logged-in ...
2
votes
2answers
940 views
Gin / Gwt / Eclipse: com.google.gwt.inject.Inject cannot be resolved to a type
I'm trying to use GIN (Guice for GWT) within eclipse. The tutorial says to add a line to my module xml file:
<inherits name="com.google.gwt.inject.Inject"/>
However, when I do this ...
2
votes
1answer
556 views
Instanciate an injector with multiple AbstractGinModule
In google Guice, I can create an injector based on multiple module with the function createInjector.
Because I use GWT.create to instanciate the injector in GoogleGin, is it possible to create a ...
1
vote
2answers
42 views
Does GIN support anything like child injectors?
I have one application that contains sub-applications. I would like to segregate the GIN injection so that each sub-application can have separate instances of the same core shared classes. I also want ...
1
vote
2answers
42 views
Using @Singleton in two Ginjector instances
I have circural dependency problems in a GWT project set ("Main project", "Widgets project", "Service adapter project"). Main references widgets and service adapters. Widgets reference service ...
1
vote
1answer
31 views
Binding generated classes in gin
I am trying to dynamically generate some set of event handlers (using com.google.gwt.core.ext.Generator subclass). The whole generation process works fine, my generated handlers accepts EventBus via ...
1
vote
1answer
62 views
Injecting with Gin into instance created by GWT.create
I have a custom deferred binder (rebind implementation) that instantiates objects. I would like to have some dependencies (@Inject annotated setter methods) within the instance returned by ...
1
vote
1answer
99 views
GWT-GIN Multiple Implementations?
I have the following code
public class AppGinModule extends AbstractGinModule{
@Override
protected void configure() {
bind(ContactListView.class).to(ContactListViewImpl.class);
...
1
vote
2answers
246 views
google-gin a provider needs a dependency. NullPointerException BindingsProcessor.java:498
In my GWT application i'm trying to setup a DI mechanism wihich would allow me to have all the commonly necessary stuff at hand everywhere. I'm using google-gin which is an adaptation of guice for ...
1
vote
1answer
67 views
How to find a solution for my Gin problem?
Recently I was playing a game of Gin with my grandmother. We played a whole afternoon and as far as I can remember, I didn't won a single game.
So I told here that it with the help of computers it ...
1
vote
2answers
125 views
How to override binding in GIN
I find the answer for Guice Overriding Binding in Guice but don't know how to do the same for GIN in GWT.
Thanks in advance!
1
vote
2answers
127 views
Inject a Class<T> with GIN
Is there a way to inject a class type Class<T> in gin? I can't seem to get it working, for example:
class GenericFoo<T> {
private final Class<T> klass;
@Inject
public ...
1
vote
1answer
182 views
GWT : DI via Gin vs GWT Deferred Binding
I'm new to GWT, but I'm not new to Dependency Injection.
I'm looking for some concrete differences between DI via Gin and GWT Deferred Binding. I've used DI in the past to de-couple my app by ...
1
vote
2answers
253 views
Inject entry point class in GWT with GIN
I've tried to do something like this:
@Singleton
public class AAA implements EntryPoint, HistoryListener
{
private BBB bbb;
private CCC ccc;
private DDD ddd;
private EEE eee;
@Inject
public AAA(BBB ...
1
vote
1answer
326 views
Gin problem using GWT - GWT.create(someClass.class) return different instance every time is called
here is my problem. I m using Gin in a gwt project, i m using GWT.create(SomeClass.class) to get instance ,but the problem is that i want signleton instance and for that purpose i bind that class in ...
1
vote
1answer
353 views
Gin problem using GWT and Guice. - java.lang.RuntimeException: Deferred binding failed for
I have a problem using Gin. Here is a simple example.
@GinModules(AppModule.class)
public interface AppInjector extends Ginjector
{
MainForm getMainPanel();
TemplateForm getHeaderForm();
}
then ...
1
vote
2answers
419 views
What is new in Google Gin 1.5?
Has anyone tried the recently released version of Google Gin (1.5)? I would like to know the new features in the release and any usage experiences with GWT.
1
vote
1answer
558 views
Deferred Binding/GIN in GWT widgets/libraries
I am struggling a little bit with the concept of deferred binding and/or dependency injection in libraries/widgets.
I try to come up with the best approach for following problem:
I want to implement ...
1
vote
2answers
563 views
GWT & GIN: how to inject PlaceController into a widget using UIBinder
I have an InlineLabel subclass that I used in UIBinder. How can I inject a PlaceController into it via GIN, so that the widget can be used in UIBinder? (recall that UIBinder requires a no-args ...
1
vote
1answer
737 views
Spring ROO GWT with GIN injection on widgets created by ui:binder
I'm trying to access some objects inside a ui:binder component, but not sure of how to access the eventBus, requestFactory, etc without writing nasty code that will keep me awake at night (also take ...
1
vote
1answer
334 views
GWT MVP when & how to use Dependency Injection
We're using the MVP pattern and GWT and I'm wondering how and when dependency injection should be used.
We have an App Controller, Presenters, Views and Model code. From reading the GIN tutorial at ...
1
vote
3answers
1k views
Injecting EventBus GWT
Trying to inject the eventbus into a component but I'm getting the
"has no default (zero args) constructor." error. Any clues what I'm
doing wrong? Very new to GIN, so it might be trivial..
Here ...
1
vote
4answers
517 views
How to vary Constants based on deployment instance
I've been building a GWT 1.7 + GAE application using the eclipse plugin.
The system constants are loaded into a MyConstants.properties file that is loaded by the singleton MyConstants class extending ...
1
vote
3answers
1k views
google gin? use with spring?
i know gin is client side of guice . so in order to use gin. it must be used together with guice? i wonder, can it be used with spring?
0
votes
1answer
20 views
Inject views into other views with Gin
I am using an MVP architecture (or at least an approximation of one) and have a hierarchy of presenters, with similarly nested views. I'll stick to the first 2 levels for simplicity:
...
0
votes
2answers
59 views
Use gwt ui-binding in conjunction with google-gin
is there a way to use dependency injection in a widget, that is created via ui binding?
Suppose I have a simple widget (in package com.example.client.ui.widget):
public class Foo extends Composite ...
0
votes
0answers
22 views
Method injection using GUICE
Please explain the following statement :
•Method injection can be useful if you don't control a class's instantiation. You can also use it if you have a superclass that needs some dependencies. ...
0
votes
1answer
60 views
GWTP Code Splitting
I am using GWTP (MVP framework by Google) with GWT 2.3.
I want to use GWT code splitting with my presenters.
I know about @ProxyCodeSplit annotation in Presenters. Like below
@ProxyCodeSplit
...
0
votes
1answer
47 views
bind constant by program/class with gwt/gin
How can the constant be bound by program/class with gwt/gin?
Instead of:
bindConstant().annotatedWith(AString.class).to("XYZ");
We need: ( Obviously, it doesn't compile )
...
0
votes
1answer
54 views
Dynamically add Binds to a GIN Module
Can I add binds to a GIN module dynamically?
For example, having a module "ExampleModule," and calling a static method on it, eg:
bind (Test.class, TestImpl.class);
and GIN do the bind ...
0
votes
1answer
79 views
javax.inject GWT error
HELP WITH THIS ERROR PLEASE!
Compiling module com.myapp.n.N
Scanning for additional dependencies: file:/C:/development/n5fix/nube/src/com/myapp/n/client/N.java
Computing all possible rebind ...
0
votes
3answers
96 views
GWT-Platform: where the business logic should go?
I just got the grip on GWTP and the MVP, GIN and Dispatch.
With dispatch there is a Handler class which defines what the action does and returns something accordingly.
So far I found myself with a ...
0
votes
1answer
97 views
GWT/Gin creating class with @Inject annotation in constructor
Let's say I have a class
public class Foo{
@Inject
public Foo(MessageBus messageBus, SomeServiceAsync service){
...
}
...
I have some doubt on how I would construct such a class, ...