-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Polish #34 : Add microsphere-spring-compatible module
- Loading branch information
1 parent
bb5c7c2
commit 2fe7f5e
Showing
17 changed files
with
7,896 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<parent> | ||
<groupId>io.github.microsphere-projects</groupId> | ||
<artifactId>microsphere-spring-parent</artifactId> | ||
<version>${revision}</version> | ||
<relativePath>../microsphere-spring-parent/pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>io.github.microsphere-projects</groupId> | ||
<artifactId>microsphere-spring-compatible</artifactId> | ||
<version>${revision}</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>Microsphere :: Spring :: Compatible</name> | ||
<description>Microsphere Spring Compatible</description> | ||
|
||
<dependencies> | ||
|
||
<!-- JSR 305 --> | ||
<dependency> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
<!-- Servlet API --> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>javax.servlet-api</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
||
</project> |
File renamed without changes.
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
53 changes: 53 additions & 0 deletions
53
microsphere-spring-compatible/src/main/java/org/springframework/lang/NonNull.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,53 @@ | ||
/* | ||
* 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.lang; | ||
|
||
import javax.annotation.Nonnull; | ||
import javax.annotation.meta.TypeQualifierNickname; | ||
import java.lang.annotation.Documented; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* A common Spring annotation to declare that annotated elements cannot be {@code null}. | ||
* | ||
* <p>Leverages JSR-305 meta-annotations to indicate nullability in Java to common | ||
* tools with JSR-305 support and used by Kotlin to infer nullability of Spring API. | ||
* | ||
* <p>Should be used at parameter, return value, and field level. Method overrides should | ||
* repeat parent {@code @NonNull} annotations unless they behave differently. | ||
* | ||
* <p>Use {@code @NonNullApi} (scope = parameters + return values) and/or {@code @NonNullFields} | ||
* (scope = fields) to set the default behavior to non-nullable in order to avoid annotating | ||
* your whole codebase with {@code @NonNull}. | ||
* | ||
* @author Sebastien Deleuze | ||
* @author Juergen Hoeller | ||
* @since 5.0 | ||
* @see NonNullApi | ||
* @see NonNullFields | ||
* @see Nullable | ||
*/ | ||
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Documented | ||
@Nonnull | ||
@TypeQualifierNickname | ||
public @interface NonNull { | ||
} |
54 changes: 54 additions & 0 deletions
54
microsphere-spring-compatible/src/main/java/org/springframework/lang/Nullable.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,54 @@ | ||
/* | ||
* 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.lang; | ||
|
||
import javax.annotation.Nonnull; | ||
import javax.annotation.meta.TypeQualifierNickname; | ||
import javax.annotation.meta.When; | ||
import java.lang.annotation.Documented; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* A common Spring annotation to declare that annotated elements can be {@code null} under | ||
* some circumstance. | ||
* | ||
* <p>Leverages JSR-305 meta-annotations to indicate nullability in Java to common | ||
* tools with JSR-305 support and used by Kotlin to infer nullability of Spring API. | ||
* | ||
* <p>Should be used at parameter, return value, and field level. Methods override should | ||
* repeat parent {@code @Nullable} annotations unless they behave differently. | ||
* | ||
* <p>Can be used in association with {@code @NonNullApi} or {@code @NonNullFields} to | ||
* override the default non-nullable semantic to nullable. | ||
* | ||
* @author Sebastien Deleuze | ||
* @author Juergen Hoeller | ||
* @since 5.0 | ||
* @see NonNullApi | ||
* @see NonNullFields | ||
* @see NonNull | ||
*/ | ||
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD}) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Documented | ||
@Nonnull(when = When.MAYBE) | ||
@TypeQualifierNickname | ||
public @interface Nullable { | ||
} |
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.