Good afternoon / evening to everyone. Immediately I say that I am on the forums for the first time. I have a rest-service of this type:
@Path("/") public class UserServiceImpl implements UserServiceAble { @GET @Path("/get") public String getSelectedUserName(@PathParam("id") int id) { UsersDao dao = new HibernateUsersDaoImpl(); String res = dao.find(id).getName(); return res; } Question: how to run it on the local server (localhost), or what is needed for this. Thanks in advance for the answer!