Take a look at domino-rest: https://github.com/DominoKit/domino-rest

You can use a shared POJOs project between the client and server projects
with common POJOs annotated with Jackson JSON annotations to transfer data
as JSON objects between client and server in a bidirectional fashion.

On Mon, May 23, 2022 at 6:33 PM hprc <[email protected]> wrote:

> I think it's a great design method.
> Client side and server
> Side communication should be loosely coupled.
>
> However, although I understand this merit, maintenance is possible more
> intuitively because the Java object set in the shared package is used for
> communication between the two.
> Normally, when using the RESET API etc., conversion work such as parsing
> is required.
>
> 2022年5月24日火曜日 2:37:05 UTC+9 Rogelio Flores:
>
>> The big disadvantage that I see with gwt-rpc is that it ties your
>> client-side with your server-side code (if you change anything related to
>> your models/rpc on the client side, you also have to update your serve-side
>> code, otherwise, it will not work). To me that in itself is a big
>> disadvantage. With something like REST APIs, your client and server side
>> code remain decoupled, giving you more freedom.
>>
>> On Friday, May 20, 2022 at 8:14:58 AM UTC-6 [email protected] wrote:
>>
>>> why not use gwt-rpc? I am a lazy guy and am happily using it for more
>>> than 10 years now - I even use the generated serializers in combination
>>> with WebSockets. What can possibly go wrong here...?
>>>
>>> On Fri, May 20, 2022 at 3:57 PM Thomas Broyer <[email protected]> wrote:
>>>
>>>> Short answer: don't start using RequestFactory now, it's been
>>>> practically unmaintained for years.
>>>>
>>>> Long answer: there's not really a longer answer actually, it's OK to
>>>> keep using RF in existing projects (if you can't afford moving to something
>>>> else), but don't start anything with it now.
>>>> (I wouldn't start anything new with gwt-rpc either BTW, but YMMV)
>>>>
>>>> On Friday, May 20, 2022 at 12:32:18 AM UTC+2 hprc wrote:
>>>>
>>>>> I know that GWT Request Factor plays an important role in Java object
>>>>> persistence and communication between client and server.
>>>>> However, on the server and client, even one object needs to generate
>>>>> related classes and interfaces, and then annotation settings etc. need to
>>>>> be set for each class and interface.
>>>>> It is complicated and has a lot of trouble to create.
>>>>>
>>>>> Originally, these things are like plugins, and it is desirable to
>>>>> select one object and generate a related class, but do you all know?
>>>>>
>>>>> I have been using GWT for over 10 years, but I do not use
>>>>> "RequestFactory" and operate only with objects like Map by RPC
>>>>> communication.
>>>>> This can simplify the entire system and greatly reduce the effort
>>>>> required to create it.
>>>>>
>>>>> GWT RequestFactory
>>>>> https://www.gwtproject.org/doc/latest/DevGuideRequestFactory.html
>>>>>
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "GWT Users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send
>>>> an email to [email protected].
>>>> To view this discussion on the web visit
>>>> https://groups.google.com/d/msgid/google-web-toolkit/66b91749-8cb7-4b84-964d-82c2996adca8n%40googlegroups.com
>>>> <https://groups.google.com/d/msgid/google-web-toolkit/66b91749-8cb7-4b84-964d-82c2996adca8n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>> --
> You received this message because you are subscribed to the Google Groups
> "GWT Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-web-toolkit/f52fd06a-b57b-4a47-bc53-f376a6e179e8n%40googlegroups.com
> <https://groups.google.com/d/msgid/google-web-toolkit/f52fd06a-b57b-4a47-bc53-f376a6e179e8n%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit/CAFHWztyJ%2BizrXLgB040Wxj%3DJ3tO0Z91xKmpLnmrLfwswhx%2Bq_A%40mail.gmail.com.

Reply via email to