You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2023/03/27 09:52:04 UTC

[tomee] branch TOMEE-4192-9.x created (now b6a24a9911)

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

rzo1 pushed a change to branch TOMEE-4192-9.x
in repository https://gitbox.apache.org/repos/asf/tomee.git


      at b6a24a9911 TOMEE-4192 ApplicationComposers do not clear GC references on release

This branch includes the following new commits:

     new b6a24a9911 TOMEE-4192 ApplicationComposers do not clear GC references on release

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[tomee] 01/01: TOMEE-4192 ApplicationComposers do not clear GC references on release

Posted by rz...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch TOMEE-4192-9.x
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit b6a24a9911fed71e509d4a7898cfb446af3db5a0
Author: G-Ork <ts...@gmail.com>
AuthorDate: Sun Mar 19 13:32:38 2023 +0100

    TOMEE-4192 ApplicationComposers do not clear GC references on release
---
 .../openejb/testing/ApplicationComposers.java      |  7 ++
 .../junit5/AppComposerMemoryReleaseTest.java       | 74 ++++++++++++++++++++++
 2 files changed, 81 insertions(+)

diff --git a/container/openejb-core/src/main/java/org/apache/openejb/testing/ApplicationComposers.java b/container/openejb-core/src/main/java/org/apache/openejb/testing/ApplicationComposers.java
index 75371114ad..7b43b88cba 100644
--- a/container/openejb-core/src/main/java/org/apache/openejb/testing/ApplicationComposers.java
+++ b/container/openejb-core/src/main/java/org/apache/openejb/testing/ApplicationComposers.java
@@ -1105,6 +1105,13 @@ public class ApplicationComposers {
             }
 
             OpenEJB.destroy();
+            SystemInstance.reset();
+            /*
+            * Clear additional references
+            */
+            appContext.getWebContexts().clear();
+            appContext.getInjections().clear();
+            appContext.getSystemInstance().removeComponent(TestInstance.class);
         } finally {
             runAll(afterRunnables);
             if (originalLoader != null) {
diff --git a/container/openejb-junit5/src/test/java/org/apache/openejb/junit5/AppComposerMemoryReleaseTest.java b/container/openejb-junit5/src/test/java/org/apache/openejb/junit5/AppComposerMemoryReleaseTest.java
new file mode 100644
index 0000000000..b5d8bb51fc
--- /dev/null
+++ b/container/openejb-junit5/src/test/java/org/apache/openejb/junit5/AppComposerMemoryReleaseTest.java
@@ -0,0 +1,74 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.openejb.junit5;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+
+import java.io.Serializable;
+import java.util.Arrays;
+
+import org.apache.openejb.jee.WebApp;
+import org.apache.openejb.testing.Classes;
+import org.apache.openejb.testing.Module;
+import org.junit.jupiter.api.Test;
+
+import jakarta.enterprise.context.ApplicationScoped;
+import jakarta.inject.Inject;
+
+@RunWithApplicationComposer
+public class AppComposerMemoryReleaseTest {
+	
+    @Module
+    @Classes(innerClassesAsBean = true, cdi = true)
+    public WebApp web() {
+        return new WebApp();
+    }
+    
+    @Inject
+    private MemoryPayloadBean memoryPayloadBean;
+    
+    /*
+     * Bean producing high memory payload easy to locate 
+     * by retained size or classname in heapdump.
+     */
+	@ApplicationScoped
+	public static class MemoryPayloadBean implements Serializable {
+		private static final long serialVersionUID = -5814319377355637770L;
+		private static final int PAYLOAD_SIZE = 1024 * 1024 * 16;
+		private String payload;
+		
+		public MemoryPayloadBean() {
+			super();
+			/*
+			 * Big Memory Payload
+			 */
+			char[] array = new char[PAYLOAD_SIZE];
+			Arrays.fill(array, '@');
+			this.payload = new String(array);
+		}
+
+		public String getPayload() {
+			return this.payload;
+		}
+	}
+	
+    @Test
+    public void run() {
+        assertNotNull(memoryPayloadBean);
+        assertNotNull(memoryPayloadBean.getPayload());
+    }
+}