Re: Meaning of @ImportedWithPrefix?

2021-05-19 Thread lofid...@gmail.com
Will this article help you? https://www.steveclaflin.com/blog-stuff/gwt/CssResourceImports.html ime...@gmail.com schrieb am Mittwoch, 19. Mai 2021 um 00:42:09 UTC+2: > I'm trying to understand how styling works in CellTable. The line # 298 > has BasicStyle annotated with

Re: GWT tutorial does not compile

2021-05-19 Thread lofid...@gmail.com
Yes, you can use GWT RPC instead of REST: https://stackoverflow.com/questions/9160535/is-it-possible-to-upload-a-file-via-gwt-rpc-servlets Or just google "gwt rpc upload file" likejudo schrieb am Dienstag, 18. Mai 2021 um 16:53:43 UTC+2: > Can I do it without REST and only SpringBoot? > > On

Re: GWT tutorial does not compile

2021-05-19 Thread likejudo
The link you gave said: "For implementing with gwt-rpc you should override service(final HttpServletRequest request,HttpServletResponse response) " But what happens to public class GreetingServiceImpl extends RemoteServiceServlet implements GreetingService On Wednesday, May 19, 2021 at

Re: GWT tutorial does not compile

2021-05-19 Thread likejudo
The only call that matches in class RemoteServiceServlet is: public final void processPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException, SerializationException { On Wednesday, May 19, 2021 at 8:55:03 AM UTC-5 likejudo wrote: > The link you

Re: GWT tutorial does not compile

2021-05-19 Thread likejudo
the method is final. cannot override. ` @Override public final void processPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException, SerializationException {` On Wednesday, May 19, 2021 at 9:22:56 AM UTC-5 likejudo wrote: > The only call that matches

Re: GWT tutorial does not compile

2021-05-19 Thread likejudo
Looking at the generated code in Nalukit, doPost has been overridden as final in RemoteServlet. This method will not work. public abstract class AbstractRemoteServiceServlet extends HttpServlet { protected transient ThreadLocal perThreadRequest; protected transient ThreadLocal perThreadResponse;

Re: Meaning of @ImportedWithPrefix?

2021-05-19 Thread Slava Imeshev
Yes, thank you. Actually, I was trying to figure out how to style CellTable (or DataGrid) so I started digging into the code. I found this thread, is this the right way to go about it? https://groups.google.com/g/google-web-toolkit/c/dZLk5LwnKN0/m/hZX7EFd3Ku8J On Wednesday, May 19, 2021 at