This file contains hidden or 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
<jms:activemq-connector | |
name="jms-connector" | |
brokerURL="tcp://localhost:61616" | |
disableTemporaryReplyToDestinations="true"/> | |
<jms:endpoint name="UnsortedOrders" | |
queue="UnsortedOrders"/> | |
<jms:endpoint name="WarehouseA" | |
queue="WarehouseA"/> | |
<jms:endpoint name="WarehouseB" | |
queue="WarehouseB"/> |
This file contains hidden or 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
<property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property> | |
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property> | |
<property name="hibernate.connection.url">jdbc:oracle:thin:user/pass@server:1521:dbname</property> |
This file contains hidden or 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
<property name="hibernate.dialect">org.hibernate.dialect.DerbyDialect</property> | |
<property name="hibernate.connection.driver_class">org.apache.derby.jdbc.EmbeddedDriver</property> | |
<property name="hibernate.connection.url">jdbc:derby:memory:muleEmbeddedDB</property> | |
<property name="hibernate.hbm2ddl.auto">create-drop</property> | |
This file contains hidden or 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
<jbpm-configuration> | |
<import resource="jbpm.default.cfg.xml" /> | |
<import resource="jbpm.jpdl.cfg.xml" /> | |
<import resource="jbpm.tx.hibernate.cfg.xml" /> | |
<process-engine-context> | |
<object class="org.mule.module.jbpm.MuleMessageService" /> | |
</process-engine-context> |
This file contains hidden or 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
<spring:bean id="jdbcDataSource" | |
class="org.enhydra.jdbc.standard.StandardDataSource" destroy-method="shutdown"> | |
<spring:property name="driverName" value="com.mysql.jdbc.Driver" /> | |
<spring:property name="url" value="jdbc:mysql://localhost/db1" /> | |
<spring:property name="user" value="dbuser" /> | |
<spring:property name="password" value="${database.password}" /> | |
</spring:bean> |
This file contains hidden or 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
database.password=ENC(ka56rcI0bDpUWoAhy5Y+PrVvqu/wMCnL) |
This file contains hidden or 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
<!-- --> | |
<!-- Configuration for encryptor, based on environment variables. --> | |
<!-- --> | |
<!-- In this example, the encryption password will be read from an --> | |
<!-- environment variable called "MULE_ENCRYPTION_PASSWORD" which, once --> | |
<!-- the application has been started, could be safely unset. --> | |
<!-- --> | |
<spring:bean id="environmentVariablesConfiguration" | |
class="org.jasypt.encryption.pbe.config.EnvironmentStringPBEConfig"> | |
<spring:property name="algorithm" value="PBEWithMD5AndDES" /> |
NewerOlder