📄 jdbcendpointuribuilder.java
字号:
/* * $Id: JdbcEndpointURIBuilder.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.jdbc;import org.mule.api.endpoint.MalformedEndpointException;import org.mule.endpoint.AbstractEndpointURIBuilder;import java.net.URI;import java.util.Properties;/** * Parses a JDBC style endpoint to a MuleEndpointURI */public class JdbcEndpointURIBuilder extends AbstractEndpointURIBuilder{ protected void setEndpoint(URI uri, Properties props) throws MalformedEndpointException { if (uri.getHost() != null && !"localhost".equals(uri.getHost())) { endpointName = uri.getHost(); } int i = uri.getPath().indexOf("/", 1); if (i > 0) { endpointName = uri.getPath().substring(1, i); address = uri.getPath().substring(i + 1); } else if (uri.getPath() != null && uri.getPath().length() != 0) { address = uri.getPath().substring(1); } else { address = uri.getAuthority(); } // JDBC endpoints can just have a param string, hence te address is left // null, but the address // should always be a non-null value if (address == null) { address = uri.getScheme(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -