GWT: Using External Jar

前端 未结 2 1853
半阙折子戏
半阙折子戏 2021-01-15 05:03

I am trying to figure out how to use external jar in GWT project.
I referred http://www.vogella.com/articles/GWTModules/article.html and it worked perfectly.
But the

相关标签:
2条回答
  • 2021-01-15 05:35

    For using external gwt library jar file in your gwt eclipse project you have to add that jar file in library tab from java build path:

    enter image description here

    0 讨论(0)
  • 2021-01-15 05:42

    If you want to use external jar and use that jar classes in your client side. you have to inherit module package entry in client gwt module.gwt.xml

    Just example a. com.test.Module2.xml so you have do entry like

    <inherits name='com.test.Module2'/>
    
    0 讨论(0)
提交回复
热议问题