• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Connection类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.simpleframework.transport.connect.Connection的典型用法代码示例。如果您正苦于以下问题:Java Connection类的具体用法?Java Connection怎么用?Java Connection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Connection类属于org.simpleframework.transport.connect包,在下文中一共展示了Connection类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: startHttpServer

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public synchronized static void startHttpServer(int port) {
    if (!started) {
        try {
            Container container = new CommandListener();
            @SuppressWarnings("resource") Connection connection = new SocketConnection(container);
            SocketAddress address = new InetSocketAddress(port);
            System.out.println("Starting httpserver on port " + port);
            LOG.info("Starting httpserver on port " + port);
            connection.connect(address);
            started = true;
        } catch (IOException e) {
            LOG.error(LogUtil.getLogMessage("Error starting httpServer: " + e), e);
            throw new RuntimeException(e);
        }
    }
}
 
开发者ID:intuit,项目名称:Tank,代码行数:17,代码来源:CommandListener.java


示例2: startHttpServer

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public synchronized static void startHttpServer(int port, StandaloneAgentStartup standaloneAgentStartup) {
    if (!started) {
        agentStarter = standaloneAgentStartup;
        try {
            Container container = new CommandListener();
            @SuppressWarnings("resource") Connection connection = new SocketConnection(container);
            SocketAddress address = new InetSocketAddress(port);
            System.out.println("Starting httpserver on port " + port);
            connection.connect(address);
            started = true;
        } catch (IOException e) {
            LOG.error("Error starting httpServer: " + e, e);
            throw new RuntimeException(e);
        }
    }
}
 
开发者ID:intuit,项目名称:Tank,代码行数:17,代码来源:CommandListener.java


示例3: createServer

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public static ServerCriteria createServer() throws Exception {
   Container container = new Container() {
      public void handle(Request request, Response response) {
         try {
            PrintStream out = response.getPrintStream();
            response.setValue("Content-Type", "text/plain");
            response.setValue("Connection", "close");
            
            out.print("TEST " + new Date());
            response.close();
         }catch(Exception e) {
            e.printStackTrace();
            try {
               response.close();
            }catch(Exception ex) {
               ex.printStackTrace();
            }
         }
      }
   };
   ContainerServer server = new ContainerServer(container);
   Connection connection = new SocketConnection(server);
   InetSocketAddress address = (InetSocketAddress)connection.connect(null); // ephemeral port
   
   return new ServerCriteria(connection, address);
}
 
开发者ID:blobrobotics,项目名称:bstation,代码行数:27,代码来源:StopTest.java


示例4: createServer

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public static Connection createServer(boolean certificateRequired, int listenPort) throws Exception {
   System.setProperty("sun.security.ssl.allowUnsafeRenegotiation", "true");
   System.setProperty("sun.security.ssl.allowLegacyHelloMessages", "true");
   File file = new File("C:\\work\\development\\async_http\\yieldbroker-proxy-trading\\etc\\uat.yieldbroker.com.pfx");
   KeyStoreReader reader = new KeyStoreReader(KeyStoreType.PKCS12, file, "p", "p");
   SecureSocketContext context = new SecureSocketContext(reader, SecureProtocol.TLS);
   SSLContext sslContext = context.getContext();
   Agent agent = new MockAgent();
   TransportProcessor processor = new TransportProcessor();
   ProcessorServer server = new ProcessorServer(processor);
   ConfigurableCertificateServer certServer = new ConfigurableCertificateServer(server);
   SocketConnection con = new SocketConnection(certServer, agent);
   SocketAddress serverAddress = new InetSocketAddress(listenPort);
   
   certServer.setCertRequired(certificateRequired);
   con.connect(serverAddress, sslContext);
   
   return con;
}
 
开发者ID:blobrobotics,项目名称:bstation,代码行数:20,代码来源:RenegotiationExample.java


示例5: validateSignatureWhenThereIsNoContent

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
@Test
public void validateSignatureWhenThereIsNoContent() throws Exception {
    Connection connection = null;
    try {
        // Start the server
        ValidatingHttpServer server = new SignatureValidatingHttpServer(port, secretKey);
        connection = server.connect();

        // Create a client with the filter that is under test
        Client client = createClient();
        client.addFilter(new HmacClientFilter(apiKey, secretKey, client.getMessageBodyWorkers()));

        // Send a request with no content in the request body
        client.resource(server.getUri()).get(String.class);

    } finally {
        if (connection != null) {
            connection.close();
        }
    }
}
 
开发者ID:bazaarvoice,项目名称:jersey-hmac-auth,代码行数:22,代码来源:HmacClientFilterTest.java


示例6: main

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public static void main(String args[]) throws Exception {
    // use port if given
    try {
        port = Integer.parseInt(args[0]);
    } catch(Exception e) {
        // silently keep port at 8080
    }

    // initialize the Stanford Core NLP
    pipeline = new StanfordCoreNLP();

    // start the server
    Container container = new StanfordCoreNLPXMLServer();
    Server server = new ContainerServer(container);
    Connection connection = new SocketConnection(server);
    SocketAddress address = new InetSocketAddress(port);
    connection.connect(address);

    log.info("Initialized server at port " + port + ".");
}
 
开发者ID:nlohmann,项目名称:StanfordCoreNLPXMLServer,代码行数:21,代码来源:StanfordCoreNLPXMLServer.java


示例7: main

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public static void main(String[] list) throws Exception {
   Container container = new BlobStationServer();
   Server server = new ContainerServer(container);
   Connection connection = new SocketConnection(server);
   SocketAddress address = new InetSocketAddress(8080);

   connection.connect(address);   
}
 
开发者ID:blobrobotics,项目名称:bstation,代码行数:9,代码来源:BlobStationServer.java


示例8: testStop

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public void testStop() throws Exception {
   ThreadDumper dumper = new ThreadDumper();
   
   dumper.start();
   dumper.waitUntilStarted();
   
   ThreadMXBean threadBean = ManagementFactory.getThreadMXBean();
   int initialThreads = threadBean.getThreadCount();
   
   for(int i = 0; i < ITERATIONS; i++) {
      try {
         ServerCriteria criteria = createServer();
         InetSocketAddress address = criteria.getAddress();
         Connection connection = criteria.getConnection();
         Client client = createClient(address, String.format("[%s of %s]", i, ITERATIONS));
         
         Thread.sleep(2000); // allow some requests to execute
         connection.close();
         Thread.sleep(100); // ensure client keeps executing
         client.close();
         Thread.sleep(1000); // wait for threads to terminate
      }catch(Exception e) {
         e.printStackTrace();
      }
      assertEquals(initialThreads, threadBean.getThreadCount());
   }
   dumper.kill();
}
 
开发者ID:blobrobotics,项目名称:bstation,代码行数:29,代码来源:StopTest.java


示例9: main

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public static void main(String[] list) throws Exception {
   Connection serverCon = createServer(false, 443);      
   /*SSLSocket socketCon = createClient();
   OutputStream out = socketCon.getOutputStream();
   
   for(int i = 0; i < 1000; i++) {
      out.write("TEST".getBytes());   
      out.flush();
      Thread.sleep(5000);
   }*/
   Thread.sleep(1000000);
   serverCon.close();
}
 
开发者ID:blobrobotics,项目名称:bstation,代码行数:14,代码来源:RenegotiationExample.java


示例10: connect

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public Connection connect() throws Exception {
    Server server = new ContainerServer(this);
    Connection connection = new SocketConnection(server);
    SocketAddress address = new InetSocketAddress(port);
    connection.connect(address);
    return connection;
}
 
开发者ID:bazaarvoice,项目名称:jersey-hmac-auth,代码行数:8,代码来源:ValidatingHttpServer.java


示例11: validateSignatureWhenContentIsPojo

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
@Test
public void validateSignatureWhenContentIsPojo() throws Exception {
    Connection connection = null;
    try {
        // Start the server
        RequestConfiguration requestConfiguration =
            RequestConfiguration.builder().withApiKeyQueryParamName("passkey")
                    .withSignatureHttpHeader("duck-duck-signature-header")
                    .withTimestampHttpHeader("duck-duck-timestamp-header")
                    .withVersionHttpHeader("duck-duck-version-header")
                    .build();
        ValidatingHttpServer server = new SignatureValidatingHttpServer(port, secretKey, requestConfiguration);
        connection = server.connect();

        // Create a client with the filter that is under test
        Client client = createClient();
        client.addFilter(new HmacClientFilter(apiKey, secretKey, client.getMessageBodyWorkers(), requestConfiguration));
        client.addFilter(new GZIPContentEncodingFilter(true));

        // Send a pizza in the request body
        Pizza pizza = new Pizza();
        pizza.setTopping("olive");
        client.resource(server.getUri())
                .type(MediaType.APPLICATION_JSON_TYPE)
                .put(pizza);

    } finally {
        if (connection != null) {
            connection.close();
        }
    }
}
 
开发者ID:bazaarvoice,项目名称:jersey-hmac-auth,代码行数:33,代码来源:HmacClientFilterTest.java


示例12: validateSignatureWhenContentIsBinary

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
@Test
public void validateSignatureWhenContentIsBinary() throws Exception {
    Connection connection = null;
    try {
        // Start the server
        RequestConfiguration requestConfiguration =
                RequestConfiguration.builder()
                        .withApiKeyQueryParamName("passkey")
                        .withSignatureHttpHeader("duck-duck-signature-header")
                        .withTimestampHttpHeader("duck-duck-timestamp-header")
                        .withVersionHttpHeader("duck-duck-version-header")
                        .build();

        ValidatingHttpServer server = new SignatureValidatingHttpServer(port, secretKey, requestConfiguration);
        connection = server.connect();

        // Create a client with the filter that is under test
        Client client = createClient();
        client.addFilter(new HmacClientFilter(apiKey, secretKey, client.getMessageBodyWorkers(),requestConfiguration));

        // Send some random binary data in the request body
        byte[] binaryData = new byte[2];
        new Random().nextBytes(binaryData);
        client.resource(server.getUri())
                .type(MediaType.APPLICATION_OCTET_STREAM_TYPE)
                .put(binaryData);

    } finally {
        if (connection != null) {
            connection.close();
        }
    }
}
 
开发者ID:bazaarvoice,项目名称:jersey-hmac-auth,代码行数:34,代码来源:HmacClientFilterTest.java


示例13: validateSignatureWhenPathHasQueryParams

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
@Test
public void validateSignatureWhenPathHasQueryParams() throws Exception {
    Connection connection = null;
    try {
        // Start the server
        RequestConfiguration requestConfiguration =
                RequestConfiguration.builder()
                        .withApiKeyQueryParamName("passkey")
                        .withSignatureHttpHeader("duck-duck-signature-header")
                        .withTimestampHttpHeader("duck-duck-timestamp-header")
                        .withVersionHttpHeader("duck-duck-version-header")
                        .build();
        ValidatingHttpServer server = new SignatureValidatingHttpServer(port, secretKey, requestConfiguration);
        connection = server.connect();

        // Create a client with the filter that is under test
        Client client = createClient();
        client.addFilter(new HmacClientFilter(apiKey, secretKey, client.getMessageBodyWorkers(), requestConfiguration));

        // Send the request to a path other than "/" and that also includes an additional query parameter
        URI uri = UriBuilder.fromUri(server.getUri())
                .segment("api", "v1", "pizza")
                .queryParam("sort", "toppings")
                .build();
        client.resource(uri).get(String.class);

    } finally {
        if (connection != null) {
            connection.close();
        }
    }
}
 
开发者ID:bazaarvoice,项目名称:jersey-hmac-auth,代码行数:33,代码来源:HmacClientFilterTest.java


示例14: startServing

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
/**
 * Starts serving HTTPS encrypted traffic from this container.
 *
 * @param numThreads the number of threads to handle the HTTP requests.
 * @param context a valid SSLContext for serving secure connections.
 * @throws IOException thrown if HTTP serving could not be started.
 */
void startServing(int numThreads, SSLContext context) throws IOException {
  final ContainerSocketProcessor processor = new ContainerSocketProcessor(this, numThreads);

  // Since this server will run forever, no need to close connection.
  final Connection connection = new SocketConnection(processor);
  final SocketAddress address = new InetSocketAddress(mPort);
  connection.connect(address, context);
  LOG.info("Listening to: " + address.toString());
}
 
开发者ID:shaeberling,项目名称:winston,代码行数:17,代码来源:MasterContainer.java


示例15: startServing

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public void startServing(Container container) {
  try {
    ContainerSocketProcessor processor =
        new ContainerSocketProcessor(container, mNumThreads);
    Connection connection = new SocketConnection(processor);
    SocketAddress address = new InetSocketAddress(mPort);
    connection.connect(address);
    LOG.info("Listening to: " + address.toString());
  } catch (IOException e) {
    LOG.error("Cannot start webserver: " + e.getMessage());
  }
}
 
开发者ID:shaeberling,项目名称:winston,代码行数:13,代码来源:ContainerServer.java


示例16: startServing

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public void startServing(int numThreads)
    throws IOException {
  final ContainerSocketProcessor processor = new ContainerSocketProcessor(this, numThreads);

  // Since this server will run forever, no need to close connection.
  @SuppressWarnings("resource")
  final Connection connection = new SocketConnection(processor);
  final SocketAddress address = new InetSocketAddress(mPort);
  LOG.info("Listening to: " + address.toString());
  connection.connect(address);
}
 
开发者ID:shaeberling,项目名称:winston,代码行数:12,代码来源:NodeContainer.java


示例17: run

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
@Override
public void run() {
    try {
        Server server = new ContainerServer(this);
        Connection connection = new SocketConnection(server);
        SocketAddress address = new InetSocketAddress(port);
        connection.connect(address);
    } catch (IOException e) {
        e.printStackTrace();
    }
}
 
开发者ID:tarjeir,项目名称:vitus-elasticsearch-webintegration,代码行数:12,代码来源:WebServer.java


示例18: start

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public void start(){
	org.simpleframework.transport.Server server;
	try {
		server = (org.simpleframework.transport.Server) new ContainerServer(reqHandler);
		@SuppressWarnings("resource")
		Connection connection = new SocketConnection(server);
	    SocketAddress address = new InetSocketAddress(port);
	    connection.connect(address);
	    System.out.println("Server runnung on port: "+port);
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:ael-code,项目名称:preston,代码行数:14,代码来源:Server.java


示例19: main

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public static void main(String[] list) throws Exception
{
	try {
      Container container = new WebApp();
      Server server = new ContainerServer(container);
      Connection connection = new SocketConnection(server);
      SocketAddress address = new InetSocketAddress(port);

      connection.connect(address);
	} catch(InternalException e)
	{
		System.err.println(e.what);
	}
}
 
开发者ID:wetneb,项目名称:MorozParser,代码行数:15,代码来源:WebApp.java


示例20: ServerCriteria

import org.simpleframework.transport.connect.Connection; //导入依赖的package包/类
public ServerCriteria(Connection connection, InetSocketAddress address){
   this.connection = connection;
   this.address = address;
}
 
开发者ID:blobrobotics,项目名称:bstation,代码行数:5,代码来源:StopTest.java



注:本文中的org.simpleframework.transport.connect.Connection类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java JavaScript类代码示例发布时间:2022-05-21
下一篇:
Java Assertions类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap