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
#!/bin/bash | |
# -------------------------------------------------------------------------------- | |
# | |
# Script to demonstrate using the KIE (Drools) Workbench REST API to: | |
# | |
# create an organistion. | |
# create a repository associated with the organisation. | |
# create a project in the repository. | |
# |
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
package com.sctrcd.multidsdemo; | |
import javax.persistence.EntityManagerFactory; | |
import javax.sql.DataSource; | |
import org.springframework.beans.factory.annotation.Qualifier; | |
import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder; | |
import org.springframework.boot.context.properties.ConfigurationProperties; | |
import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; | |
import org.springframework.context.annotation.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
spring: | |
datasource: | |
url: jdbc:mysql://localhost/foo_schema | |
username: root | |
password: d4t4b4s3sForLif3 | |
driverClassName: com.mysql.jdbc.Driver | |
test-on-borrow: true | |
test-while-idle: true | |
validation-query: select 1; | |
maxActive: 1 |
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
package com.sctrcd.multidsdemo; | |
import javax.persistence.EntityManagerFactory; | |
import javax.sql.DataSource; | |
import org.springframework.beans.factory.annotation.Qualifier; | |
import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder; | |
import org.springframework.boot.context.properties.ConfigurationProperties; | |
import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; | |
import org.springframework.context.annotation.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
@RestController | |
public class BusPassController { | |
private static Logger log = LoggerFactory.getLogger(BusPassController.class); | |
private final BusPassService busPassService; | |
@Autowired | |
public BusPassController(BusPassService busPassService) { | |
this.busPassService = busPassService; |
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
@Service | |
public class BusPassService { | |
private final KieContainer kieContainer; | |
@Autowired | |
public BusPassService(KieContainer kieContainer) { | |
log.info("Initialising a new bus pass session."); | |
this.kieContainer = kieContainer; | |
} |
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
@SpringBootApplication | |
public class BusPassApp { | |
public static void main(String[] args) { | |
ApplicationContext ctx = SpringApplication.run(BusPassApp.class, args); | |
} | |
@Bean | |
public KieContainer kieContainer() { | |
return KieServices.Factory.get().getKieClasspathContainer(); |
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
KieContainer kieContainer = KieServices.Factory.get().getKieClasspathContainer(); | |
KieSession kieSession = kieContainer.newKieSession("BusPassSession"); |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kmodule xmlns="http://jboss.org/kie/6.0.0/kmodule" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<kbase name="BusPassKbase" packages="com.sctrcd.buspassws.rules"> | |
<ksession name="BusPassSession" /> | |
</kbase> | |
</kmodule> |
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
<!-- Transitively bring in the Spring IO Platform Bill-of-Materials `pom.xml` --> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>io.spring.platform</groupId> | |
<artifactId>platform-bom</artifactId> | |
<version>1.1.1.RELEASE</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> |
NewerOlder