Re: GWT tutorial does not compile

2021-05-17 Thread likejudo
Dr Lofi, What archetype did you use? I am not allowed to clone nor copy-paste code into my workspace. Can you please give me the "maven generate" command line you used? On Monday, May 17, 2021 at 4:53:58 PM UTC-5 likejudo wrote: > If I understand correctly, > I will try that but I am not

Re: GWT tutorial does not compile

2021-05-17 Thread likejudo
If I understand correctly, I will try that but I am not allowed to clone any repo from github nor downlead any software. I have been doing this POC in my personal laptop, not my workspace at work. On Monday, May 17, 2021 at 3:52:33 PM UTC-5 lofid...@gmail.com wrote: > Ahh forget... You need to

Re: GWT tutorial does not compile

2021-05-17 Thread lofid...@gmail.com
Ahh forget... You need to run your local mvn first... Maybe you are the first person who will download the Domino libs... So please check out this project: https://github.com/lofidewanto/stockwatcher/tree/master/stockwatcher-springboot and run mvn clean install lofid...@gmail.com schrieb

Re: GWT tutorial does not compile

2021-05-17 Thread lofid...@gmail.com
Can you find following lib? com.google.elemental2 elemental2-core Without this one it is not possible - at least it doesn't make sense for me - to work with REST on GWT / JavaScript... likejudo schrieb am Montag, 17. Mai 2021 um 22:41:24 UTC+2: > Unfortunately, I do not find it in

Re: GWT tutorial does not compile

2021-05-17 Thread likejudo
Unfortunately, I do not find it in our Nexus. In the keyword search box, I searched for org.dominokit and then I searched for domino-rest-client. "No results found". On Monday, May 17, 2021 at 3:06:44 PM UTC-5 lofid...@gmail.com wrote: > If you want to use REST, you should use Domino REST

Re: GWT tutorial does not compile

2021-05-17 Thread lofid...@gmail.com
If you want to use REST, you should use Domino REST simple framework for GWT, see: https://github.com/DominoKit/domino-rest Here is my example using REST with Domino REST for GWT:

Re: GWT tutorial does not compile

2021-05-17 Thread likejudo
The REST example uses Postman as client, not GWT. I need to use Spring Boot for server, and GWT for client. REST is fine if I don't have to add new libraries. (I want to avoid adding libraries like Domino to keep it simple and not worry about yet learning another tool, availability in my repo,

Re: GWT tutorial does not compile

2021-05-17 Thread Dr. Lofi Dewanto
You need to decide first, what communication protocol you want to use between your Web browser (client) and your Spring Boot (server): - GWT RPC - REST In both cases you can upload your files... GWT RPC:

Re: GWT tutorial does not compile

2021-05-17 Thread likejudo
Dr Lofi, I need to make a file uploader for a spring boot server and was looking at the generated code. I see that the Impl extends RemoteServiceServlet. The example for file uploads however, has its own controller. https://spring.io/guides/gs/uploading-files/ @Controller public class

Re: GWT tutorial does not compile

2021-05-17 Thread lofid...@gmail.com
Yeah, I think your Nexus is connected to Maven Central... So you would have everything which is already uploaded at Maven Central... Other than Maven Central is difficult... likejudo schrieb am Montag, 17. Mai 2021 um 16:32:00 UTC+2: > @TBroyer, @Lofi > When I looked in my employer's Nexus repo

Re: GWT tutorial does not compile

2021-05-17 Thread likejudo
@TBroyer, @Lofi When I looked in my employer's Nexus repo searching for "gwt-maven-plugin" I found only the Mojo Codehaus plugin. So I assumed that we did not have it. A few days ago, I searched instead for "net.ltgt.gwt.maven" and found it! :) On Monday, May 17, 2021 at 7:09:21 AM UTC-5

Re: GWT tutorial does not compile

2021-05-17 Thread Thomas Broyer
On Sunday, May 16, 2021 at 5:54:51 PM UTC+2 lofid...@gmail.com wrote: > Yes that also fine. > > The main thing: use the *TBroyer Maven plugin* instead the old one or > Eclipse plugin. > Except, he said several times that he couldn't: “ I don't have a choice. I have to use what is in my