-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-970 - Prevent archiving JPA entity from being included in non-arch…
…iving setups.\n\nFixes GH-970.
- Loading branch information
Showing
7 changed files
with
146 additions
and
52 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
37 changes: 37 additions & 0 deletions
37
...n/java/org/springframework/modulith/events/jpa/archiving/ArchivedJpaEventPublication.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.modulith.events.jpa.archiving; | ||
|
||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.Table; | ||
|
||
import java.time.Instant; | ||
import java.util.UUID; | ||
|
||
import org.springframework.modulith.events.jpa.JpaEventPublication; | ||
|
||
@Entity(name = "ArchivedJpaEventPublication") | ||
@Table(name = "EVENT_PUBLICATION_ARCHIVE") | ||
public class ArchivedJpaEventPublication extends JpaEventPublication { | ||
|
||
public ArchivedJpaEventPublication(UUID id, Instant publicationDate, String listenerId, String serializedEvent, | ||
Class<?> eventType) { | ||
super(id, publicationDate, listenerId, serializedEvent, eventType); | ||
} | ||
|
||
@SuppressWarnings("unused") | ||
ArchivedJpaEventPublication() {} | ||
} |
37 changes: 37 additions & 0 deletions
37
...in/java/org/springframework/modulith/events/jpa/archiving/ArchivingAutoConfiguration.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.modulith.events.jpa.archiving; | ||
|
||
import org.springframework.boot.autoconfigure.AutoConfiguration; | ||
import org.springframework.boot.autoconfigure.AutoConfigurationPackage; | ||
import org.springframework.boot.autoconfigure.AutoConfigureBefore; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; | ||
import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration; | ||
import org.springframework.modulith.events.config.EventPublicationAutoConfiguration; | ||
import org.springframework.modulith.events.support.CompletionMode; | ||
|
||
/** | ||
* Auto-configuration adding the current package as auto-configuration package for {@link ArchivedJpaEventPublication} | ||
* to be included in the JPA setup. | ||
* | ||
* @author Oliver Drotbohm | ||
* @since 1.3.1 | ||
*/ | ||
@ConditionalOnProperty(name = CompletionMode.PROPERTY, havingValue = "archive") | ||
@AutoConfiguration | ||
@AutoConfigureBefore({ HibernateJpaAutoConfiguration.class, EventPublicationAutoConfiguration.class }) | ||
@AutoConfigurationPackage | ||
class ArchivingAutoConfiguration {} |
37 changes: 37 additions & 0 deletions
37
...ain/java/org/springframework/modulith/events/jpa/updating/DefaultJpaEventPublication.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.modulith.events.jpa.updating; | ||
|
||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.Table; | ||
|
||
import java.time.Instant; | ||
import java.util.UUID; | ||
|
||
import org.springframework.modulith.events.jpa.JpaEventPublication; | ||
|
||
@Entity(name = "DefaultJpaEventPublication") | ||
@Table(name = "EVENT_PUBLICATION") | ||
public class DefaultJpaEventPublication extends JpaEventPublication { | ||
|
||
public DefaultJpaEventPublication(UUID id, Instant publicationDate, String listenerId, String serializedEvent, | ||
Class<?> eventType) { | ||
super(id, publicationDate, listenerId, serializedEvent, eventType); | ||
} | ||
|
||
@SuppressWarnings("unused") | ||
DefaultJpaEventPublication() {} | ||
} |
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
org.springframework.modulith.events.jpa.JpaEventPublicationAutoConfiguration | ||
org.springframework.modulith.events.jpa.archiving.ArchivingAutoConfiguration |
This file contains 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