requestfactory
GWT RequestFactory with Command pattern
Are you currently using the Command Pattern in combination with RequestFactory? I\'d like to use it but since RequestFactory doesn\'t allow inheritance, I\'m not sure how to do it.开发者_运维技巧[详细]
2023-02-15 15:12 分类:问答populating an ExtGWT tree via RequestFactory
I upgraded to GWT 2.2.0 with RequestFactory - I have a TreePanel and I want to get some ModelData instances from server to populate it.[详细]
2023-02-14 09:23 分类:问答Using a RequestFactoryEditorDriver to update on the fly
I have a text field that I want to save periodically as users type in it.I\'d like to hook it into my existing RequestFactoryEditorDriver framework, but I can\'t think of a way to do so.The trouble is[详细]
2023-02-14 03:17 分类:问答GWT RequestFactory: How can I get a persistent id from stableId()?
I use Long ids in my entities, not only to store them in the datastore, but to reference other entities.Now, I\'m using RequestFactory to create() objects on the client and persist them, but I need a[详细]
2023-02-12 19:17 分类:问答GWT ServiceLocator with multi-module maven project
I\'ve a multi-module GWT project and I\'d like 开发者_Go百科to use ServiceLocators. I have 3 modules:[详细]
2023-02-11 22:47 分类:问答GWT RequestFactory: inheriting interfaces into a RequestContext
I have my OrganizationRequestContext interface, which works great: @Service(OrganizationDAO.class) public interface OrganizationRequestContext extends RequestContext[详细]
2023-02-11 03:19 分类:问答GWT RequestFactory and multiple types
My GWT app has ten different kinds of entities.Right now I use plain old DTOs and transport them over GWT-RPC.This works well for cases like startup - I can pack them all into a single request.[详细]
2023-02-10 13:58 分类:问答Inject DB Instance For Static and Instance Accessibility
I have a POJO that is used with GWT\'s RequestFactory and an associated proxy. The POJO has both static methods (list()) and instance methods (persist()) which need access to my database. My database[详细]
2023-02-10 07:12 分类:问答RequestFactory with service layer
I need to use GWT with a service-based domain layer - not beans with DAOs. Is the GWT 2.1 architecture with MVP and RequestFactory fitted for this? Or should I stay w开发者_开发知识库ith RPC?[详细]
2023-02-09 11:01 分类:问答GWT RequestFactory: how to handle entities with composite primary keys
Can RequestFactory handle composite primary keys? The documentation mentions that entities must implement getId(); how should this be implemented in the 开发者_Python百科case where entities do not h[详细]
2023-02-09 08:52 分类:问答