我希望通过网络在特定地址访问我的服务器(码头)。如何配置码头服务器以使用外部地址,例如:my_address_name.org 或其他。
因为默认情况下:
server = new Server(port);
WebAppContext context = new WebAppContext();
context.setResourceBase(app_path);
context.setDescriptor(app_path + "WEB-INF/web.xml");
context.setConfigurations(new Configuration[] {
new AnnotationConfiguration(), new WebXmlConfiguration(),
new WebInfConfiguration(), new TagLibConfiguration(),
new PlusConfiguration(), new MetaInfConfiguration(),
new FragmentConfiguration(), new EnvConfiguration() });
context.setContextPath(context_path);
context.setParentLoaderPriority(true);
server.setHandler(context);
try {
server.start();
server.join(); ...
它在本地主机上运行...