-
Notifications
You must be signed in to change notification settings - Fork 38.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce @SqlMergeMode for configuring @SQL annotation merging
Closes gh-1835
- Loading branch information
Showing
7 changed files
with
258 additions
and
127 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
82 changes: 82 additions & 0 deletions
82
spring-test/src/main/java/org/springframework/test/context/jdbc/SqlMergeMode.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,82 @@ | ||
/* | ||
* Copyright 2002-2019 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.test.context.jdbc; | ||
|
||
import java.lang.annotation.Documented; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Inherited; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* {@code @SqlMergeMode} is used to annotate a test class or test method to | ||
* configure whether method-level {@code @Sql} declarations are merged with | ||
* class-level {@code @Sql} declarations. | ||
* | ||
* <p>A method-level {@code @SqlMergeMode} declaration overrides a class-level | ||
* declaration. | ||
* | ||
* <p>If {@code @SqlMergeMode} is not declared on a test class or test method, | ||
* {@link MergeMode#OVERRIDE} will be used by default. | ||
* | ||
* <p>This annotation may be used as a <em>meta-annotation</em> to create custom | ||
* <em>composed annotations</em> with attribute overrides. | ||
* | ||
* @author Sam Brannen | ||
* @author Dmitry Semukhin | ||
* @since 5.2 | ||
* @see Sql | ||
* @see MergeMode#MERGE | ||
* @see MergeMode#OVERRIDE | ||
*/ | ||
@Target({ElementType.TYPE, ElementType.METHOD}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Documented | ||
@Inherited | ||
public @interface SqlMergeMode { | ||
|
||
/** | ||
* Indicates whether method-level {@code @Sql} annotations should be merged | ||
* with class-level {@code @Sql} annotations or override them. | ||
*/ | ||
MergeMode value(); | ||
|
||
|
||
/** | ||
* Enumeration of <em>modes</em> that dictate whether method-level {@code @Sql} | ||
* declarations are merged with class-level {@code @Sql} declarations. | ||
*/ | ||
enum MergeMode { | ||
|
||
/** | ||
* Indicates that method-level {@code @Sql} declarations should be merged | ||
* with class-level {@code @Sql} declarations, with class-level SQL | ||
* scripts and statements executed before method-level scripts and | ||
* statements. | ||
*/ | ||
MERGE, | ||
|
||
/** | ||
* Indicates that method-level {@code @Sql} declarations should override | ||
* class-level {@code @Sql} declarations. | ||
*/ | ||
OVERRIDE | ||
|
||
} | ||
|
||
} |
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
54 changes: 0 additions & 54 deletions
54
spring-test/src/test/java/org/springframework/test/context/jdbc/SqlMethodOverrideTests.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.