是否有使用spring di的jboss保险丝的快速入门原型

时间:2017-05-30 15:19:45

标签: spring apache-camel jbossfuse fabric8

由于蓝图似乎是一种痛苦(作为依赖注入框架),我们希望使用Spring DI(基于Java)来实现未来的服务实现(基于Camel)。目前,我们在结构模式下在保险丝6.3上部署所有服务。

Red_Hat_JBoss_Fuse-6.3-Developing_and_Deploying_Applications-en-US.pdf州:

  

典型的Red Hat JBoss Fuse应用程序基于特定的开发模型,该模型基于此   围绕Java语言,Spring或蓝图依赖注入框架...

开始时是否有一个好的maven原型?我找到了那些fabric8 archetypes,但它们似乎针对的是fabric8 v2 - 一个完全不同的世界,不是吗?

2 个答案:

答案 0 :(得分:1)

你可以在org.apache.camel.archetypes组中使用camel-archetype-spring archetype。

示例:

//find the max ***q*** first       
int k=1;
int sum=a_1;
while(sum < 1000){
     int inc = some equation of k;
     sum += inc;
     k++;

//compute a_2, ..., a_q
int array[k-1];
int sum=a_1;
for(int h=0; h<k; h++){
     int inc = some equation of k;  // repeated computation
     sum += inc;
     array[h]=sum;
} 

答案 1 :(得分:1)

与此同时我找到了

https://github.com/FuseByExample/

这个例子有很大帮助。最棘手的部分是bundle plugin和fabric8的配置。