java - what is the standard output foreman? -
i have following java code
system.out.println(client.resource(restful_url_disciplinas)); system.out.println(client.resource(restful_url_disciplinas).path(id.tostring())); system.out.println(client.resource(restful_url_disciplinas).path(id.tostring()).path("curso")); webresource webresource = client.resource(restful_url_disciplinas).path(id.tostring()).path("curso");
why not display when use following command:
┌─[ricardoramos]@[falcon]:~/projetos eclipse/local-clienterest └──> $ foreman start 19:21:45 web.1 | started pid 19740 19:21:45 web.1 | 2015-07-01 19:21:45.879:info:omjr.runner:runner 19:21:45 web.1 | 2015-07-01 19:21:45.880:warn:omjr.runner:no tx manager found 19:21:45 web.1 | 2015-07-01 19:21:45.917:info:omjr.runner:deploying file:/home/ricardoramos/projetos%20eclipse/local-clienterest/target/clienterest-0.0.1-snapshot.war @ / 19:21:45 web.1 | 2015-07-01 19:21:45.943:info:oejs.server:jetty-8.y.z-snapshot 19:21:46 web.1 | 2015-07-01 19:21:46.495:info:oejpw.plusconfiguration:no transaction manager found - if webapp requires one, please configure one. 19:21:48 web.1 | 2015-07-01 19:21:48.167:info::main: logging initialized @2438ms 19:21:48 web.1 | 2015-07-01 19:21:48.517:warn:oejsh.requestloghandler:!requestlog 19:21:48 web.1 | 2015-07-01 19:21:48.542:info:oejs.abstractconnector:started selectchannelconnector@0.0.0.0:8082
what's wrong?
Comments
Post a Comment