org.apache.camel.component.ibatis.IBatisComponent Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.ibatis;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.ibatis.sqlmap.client.SqlMapClientBuilder;
import org.apache.camel.impl.UriEndpointComponent;
import org.apache.camel.spi.Metadata;
import org.apache.camel.util.ResourceHelper;
/**
* An parameters) throws Exception {
IBatisEndpoint answer = new IBatisEndpoint(uri, this, remaining);
answer.setUseTransactions(isUseTransactions());
setProperties(answer, parameters);
return answer;
}
protected SqlMapClient createSqlMapClient() throws IOException {
InputStream is = ResourceHelper.resolveMandatoryResourceAsInputStream(getCamelContext(), sqlMapConfig);
return SqlMapClientBuilder.buildSqlMapClient(is);
}
// Properties
//-------------------------------------------------------------------------
public SqlMapClient getSqlMapClient() {
return sqlMapClient;
}
/**
* To use the given {@link com.ibatis.sqlmap.client.SqlMapClient}
*/
public void setSqlMapClient(SqlMapClient sqlMapClient) {
this.sqlMapClient = sqlMapClient;
}
public String getSqlMapConfig() {
return sqlMapConfig;
}
/**
* Location of iBatis xml configuration file.
*
* The default value is: SqlMapConfig.xml loaded from the classpath
*/
public void setSqlMapConfig(String sqlMapConfig) {
this.sqlMapConfig = sqlMapConfig;
}
public boolean isUseTransactions() {
return useTransactions;
}
/**
* Whether to use transactions.
*
* This option is by default true.
*/
public void setUseTransactions(boolean useTransactions) {
this.useTransactions = useTransactions;
}
@Override
protected void doStart() throws Exception {
super.doStart();
if (sqlMapClient == null) {
sqlMapClient = createSqlMapClient();
}
}
@Override
protected void doStop() throws Exception {
super.doStop();
}
}