I am developing a GWT project in which i need a front end developer to handle all the front end things and a back end developer to look all the coding side , but i don’t want a front end developer to see my coding stuff and don’t want a back end developer to see my view .
Is it possible in any way in GWT?
Thanks
That should be pretty easy if you structure the project properly. You should have three packages:
client,serverandshared.sharedshould contain RPC service, service async and DTO (or model) classes.Frontend guy needs
client,sharedand a mock version ofserver.Backend guy needs
server,sharedand a mock version ofclient.So, to keep them in the dark you need to create mock versions of
clientandsharedthat need to be updated only whensharedchanges.