File tree Expand file tree Collapse file tree 4 files changed +31
-0
lines changed
src/main/java/org/flowable/rest/conf
flowable-dmn-api/src/main/java/org/flowable/dmn/api
flowable-ui-task/flowable-ui-task-conf/src/main/java/org/flowable/app/conf Expand file tree Collapse file tree 4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 536
536
<groupId >org.flowable</groupId >
537
537
<artifactId >flowable-http</artifactId >
538
538
</dependency >
539
+
540
+ <!-- LOGGING -->
541
+ <dependency >
542
+ <groupId >org.slf4j</groupId >
543
+ <artifactId >slf4j-api</artifactId >
544
+ </dependency >
545
+ <dependency >
546
+ <groupId >org.slf4j</groupId >
547
+ <artifactId >slf4j-log4j12</artifactId >
548
+ </dependency >
549
+ <dependency >
550
+ <groupId >org.slf4j</groupId >
551
+ <artifactId >jcl-over-slf4j</artifactId >
552
+ </dependency >
553
+
539
554
<dependency >
540
555
<groupId >com.h2database</groupId >
541
556
<artifactId >h2</artifactId >
Original file line number Diff line number Diff line change 8
8
import org .flowable .content .spring .SpringContentEngineConfiguration ;
9
9
import org .flowable .content .spring .configurator .SpringContentEngineConfigurator ;
10
10
import org .flowable .dmn .api .DmnEngineConfigurationApi ;
11
+ import org .flowable .dmn .api .DmnHistoryService ;
11
12
import org .flowable .dmn .api .DmnRepositoryService ;
12
13
import org .flowable .dmn .api .DmnRuleService ;
13
14
import org .flowable .dmn .spring .SpringDmnEngineConfiguration ;
@@ -147,6 +148,8 @@ public ProcessEngineConfigurationImpl processEngineConfiguration() {
147
148
148
149
SpringContentEngineConfigurator springContentEngineConfigurator = new SpringContentEngineConfigurator ();
149
150
springContentEngineConfigurator .setContentEngineConfiguration (contentEngineConfiguration );
151
+
152
+ processEngineConfiguration .addConfigurator (springContentEngineConfigurator );
150
153
151
154
return processEngineConfiguration ;
152
155
}
@@ -205,6 +208,11 @@ public DmnRepositoryService dmnRepositoryService() {
205
208
public DmnRuleService dmnRuleService () {
206
209
return dmnEngineConfiguration ().getDmnRuleService ();
207
210
}
211
+
212
+ @ Bean
213
+ public DmnHistoryService dmnHistoryService () {
214
+ return dmnEngineConfiguration ().getDmnHistoryService ();
215
+ }
208
216
209
217
@ Bean
210
218
public ContentService contentService () {
Original file line number Diff line number Diff line change @@ -19,5 +19,7 @@ public interface DmnEngineConfigurationApi {
19
19
DmnRuleService getDmnRuleService ();
20
20
21
21
DmnManagementService getDmnManagementService ();
22
+
23
+ DmnHistoryService getDmnHistoryService ();
22
24
23
25
}
Original file line number Diff line number Diff line change 22
22
import org .flowable .content .spring .SpringContentEngineConfiguration ;
23
23
import org .flowable .content .spring .configurator .SpringContentEngineConfigurator ;
24
24
import org .flowable .dmn .api .DmnEngineConfigurationApi ;
25
+ import org .flowable .dmn .api .DmnHistoryService ;
25
26
import org .flowable .dmn .api .DmnRepositoryService ;
26
27
import org .flowable .dmn .api .DmnRuleService ;
27
28
import org .flowable .dmn .spring .SpringDmnEngineConfiguration ;
@@ -260,6 +261,11 @@ public DmnRepositoryService dmnRepositoryService() {
260
261
public DmnRuleService dmnRuleService () {
261
262
return dmnEngineConfiguration ().getDmnRuleService ();
262
263
}
264
+
265
+ @ Bean
266
+ public DmnHistoryService dmnHistoryService () {
267
+ return dmnEngineConfiguration ().getDmnHistoryService ();
268
+ }
263
269
264
270
@ Bean
265
271
public ContentService contentService () {
You can’t perform that action at this time.
0 commit comments