forked from apache/camel-quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix apache#1384 camel-mybatis native support
- Loading branch information
Showing
31 changed files
with
637 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 0 additions & 46 deletions
46
...src/main/java/org/apache/camel/quarkus/component/mybatis/deployment/MybatisProcessor.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
...src/main/java/org/apache/camel/quarkus/component/mybatis/deployment/MybatisProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* 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.quarkus.component.mybatis.deployment; | ||
|
||
import java.util.List; | ||
import java.util.function.Supplier; | ||
|
||
import io.quarkiverse.mybatis.deployment.SqlSessionFactoryBuildItem; | ||
import io.quarkus.deployment.annotations.BuildStep; | ||
import io.quarkus.deployment.annotations.ExecutionTime; | ||
import io.quarkus.deployment.annotations.Record; | ||
import io.quarkus.deployment.builditem.FeatureBuildItem; | ||
import io.quarkus.runtime.configuration.ConfigurationException; | ||
import org.apache.camel.component.mybatis.MyBatisBeanComponent; | ||
import org.apache.camel.component.mybatis.MyBatisComponent; | ||
import org.apache.camel.quarkus.component.mybatis.runtime.CamelMyBatisRecorder; | ||
import org.apache.camel.quarkus.core.deployment.spi.CamelBeanBuildItem; | ||
import org.jboss.logging.Logger; | ||
|
||
class MybatisProcessor { | ||
|
||
private static final Logger LOG = Logger.getLogger(MybatisProcessor.class); | ||
private static final String FEATURE = "camel-mybatis"; | ||
|
||
@BuildStep | ||
FeatureBuildItem feature() { | ||
return new FeatureBuildItem(FEATURE); | ||
} | ||
|
||
@Record(ExecutionTime.STATIC_INIT) | ||
@BuildStep | ||
CamelBeanBuildItem mybatisComponent( | ||
List<SqlSessionFactoryBuildItem> sqlSessionFactoryBuildItems, CamelMyBatisRecorder recorder) throws Throwable { | ||
return new CamelBeanBuildItem("mybatis", MyBatisComponent.class.getName(), | ||
recorder.createMyBatisComponent( | ||
findXmlSqlSessionFactory(sqlSessionFactoryBuildItems).getSqlSessionFactory())); | ||
} | ||
|
||
@Record(ExecutionTime.STATIC_INIT) | ||
@BuildStep | ||
CamelBeanBuildItem mybatisBeanComponent( | ||
List<SqlSessionFactoryBuildItem> sqlSessionFactoryBuildItems, CamelMyBatisRecorder recorder) throws Throwable { | ||
return new CamelBeanBuildItem("mybatis-bean", MyBatisBeanComponent.class.getName(), | ||
recorder.createMyBatisBeanComponent( | ||
findXmlSqlSessionFactory(sqlSessionFactoryBuildItems).getSqlSessionFactory())); | ||
} | ||
|
||
private SqlSessionFactoryBuildItem findXmlSqlSessionFactory( | ||
List<SqlSessionFactoryBuildItem> sqlSessionFactoryBuildItems) throws Throwable { | ||
return sqlSessionFactoryBuildItems.stream().filter(s -> s.isFromXmlConfig()).findFirst() | ||
.orElseThrow((Supplier<Throwable>) () -> new ConfigurationException("No MyBatis XML Config")); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
extensions/mybatis/runtime/src/main/doc/configuration.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Please refer to https://quarkiverse.github.io/quarkiverse-docs/quarkus-mybatis/dev/index.html[Quarkus MyBatis] for configuration. It must enable the following options | ||
|
||
[source, properties] | ||
---- | ||
quarkus.mybatis.xmlconfig.enable=true | ||
quarkus.mybatis.xmlconfig.path=SqlMapConfig.xml | ||
---- | ||
TIP: `quarkus.mybatis.xmlconfig.path` must be the same with `configurationUri` param in the mybatis endpoint. | ||
|
||
If you want to run in the native mode, you have to set these properties in pom.xml currently. | ||
|
||
[source, xml] | ||
---- | ||
<properties> | ||
<quarkus.package.type>native</quarkus.package.type> | ||
<quarkus.native.additional-build-args>--report-unsupported-elements-at-runtime</quarkus.native.additional-build-args> | ||
</properties> | ||
---- |
41 changes: 41 additions & 0 deletions
41
...rc/main/java/org/apache/camel/quarkus/component/mybatis/runtime/CamelMyBatisRecorder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* 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.quarkus.component.mybatis.runtime; | ||
|
||
import io.quarkus.runtime.RuntimeValue; | ||
import io.quarkus.runtime.annotations.Recorder; | ||
import org.apache.camel.component.mybatis.MyBatisBeanComponent; | ||
import org.apache.camel.component.mybatis.MyBatisComponent; | ||
import org.apache.ibatis.session.SqlSessionFactory; | ||
|
||
@Recorder | ||
public class CamelMyBatisRecorder { | ||
|
||
public RuntimeValue<MyBatisComponent> createMyBatisComponent(RuntimeValue<SqlSessionFactory> sqlSessionFactory) { | ||
MyBatisComponent component = new MyBatisComponent(); | ||
component.setSqlSessionFactory(sqlSessionFactory.getValue()); | ||
|
||
return new RuntimeValue<>(component); | ||
} | ||
|
||
public RuntimeValue<MyBatisBeanComponent> createMyBatisBeanComponent(RuntimeValue<SqlSessionFactory> sqlSessionFactory) { | ||
MyBatisBeanComponent component = new MyBatisBeanComponent(); | ||
component.setSqlSessionFactory(sqlSessionFactory.getValue()); | ||
|
||
return new RuntimeValue<>(component); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.