You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/11/26 13:15:10 UTC

[isis] branch master updated: ISIS-2877: register DtoContextDefault with Spring

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 924b83c  ISIS-2877: register DtoContextDefault with Spring
924b83c is described below

commit 924b83ccf91f708c7bdc8f21554ca6c970e7c2b0
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Nov 26 14:06:32 2021 +0100

    ISIS-2877: register DtoContextDefault with Spring
---
 .../isis/core/runtimeservices/IsisModuleCoreRuntimeServices.java      | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/IsisModuleCoreRuntimeServices.java b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/IsisModuleCoreRuntimeServices.java
index c42ecc7..914e044 100644
--- a/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/IsisModuleCoreRuntimeServices.java
+++ b/core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/IsisModuleCoreRuntimeServices.java
@@ -31,6 +31,7 @@ import org.apache.isis.core.runtime.IsisModuleCoreRuntime;
 import org.apache.isis.core.runtimeservices.bookmarks.BookmarkServiceDefault;
 import org.apache.isis.core.runtimeservices.command.CommandDtoFactoryDefault;
 import org.apache.isis.core.runtimeservices.command.CommandExecutorServiceDefault;
+import org.apache.isis.core.runtimeservices.command.DtoContextDefault;
 import org.apache.isis.core.runtimeservices.email.EmailServiceDefault;
 import org.apache.isis.core.runtimeservices.eventbus.EventBusServiceSpring;
 import org.apache.isis.core.runtimeservices.executor.MemberExecutorServiceDefault;
@@ -107,6 +108,9 @@ import org.apache.isis.core.runtimeservices.xmlsnapshot.XmlSnapshotServiceDefaul
         XmlSnapshotServiceDefault.class,
         ObjectLifecyclePublisherDefault.class,
 
+        // @Component's
+        DtoContextDefault.class,
+
         // @Controller
         RoutingServiceDefault.class,