-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add package-info.java and Javadoc comments for config and annot…
…ation packages
- Loading branch information
1 parent
dd801f9
commit 3cd3f2a
Showing
11 changed files
with
186 additions
and
3 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 |
---|---|---|
@@ -1 +1 @@ | ||
version=0.0.2 | ||
version=0.1.0-alpha |
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
9 changes: 9 additions & 0 deletions
9
...pring-webmvc-jre8/src/main/java/io/github/benny123tw/servlet/annotation/package-info.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,9 @@ | ||
/** | ||
* This package contains annotations for enabling Vite integration in Spring MVC applications. | ||
* | ||
* <p>The primary annotation in this package is {@link EnableVite}, which when applied to a | ||
* configuration class, imports the necessary configuration for Vite.</p> | ||
* | ||
* @see io.github.benny123tw.servlet.config.ViteConfig | ||
*/ | ||
package io.github.benny123tw.servlet.annotation; |
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
20 changes: 20 additions & 0 deletions
20
vite-spring-webmvc-jre8/src/main/java/io/github/benny123tw/servlet/config/package-info.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,20 @@ | ||
/** | ||
* This package contains the configuration classes for integrating Vite with Spring MVC applications. | ||
* | ||
* <p>Classes in this package provide configuration and beans necessary for setting up Vite in a Spring MVC | ||
* application, including properties for the Vite manifest file, local development server URL, resource paths, | ||
* and debug settings.</p> | ||
* | ||
* <p>Usage example:</p> | ||
* <pre class="code"> | ||
* @Configuration | ||
* @EnableVite | ||
* public class AppConfig { | ||
* // Your other Spring configuration | ||
* } | ||
* </pre> | ||
* | ||
* @see io.github.benny123tw.servlet.annotation.EnableVite | ||
* @see io.github.benny123tw.servlet.config.ViteConfig | ||
*/ | ||
package io.github.benny123tw.servlet.config; |
9 changes: 9 additions & 0 deletions
9
vite-spring-webmvc-jre8/src/main/java/io/github/benny123tw/servlet/package-info.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,9 @@ | ||
/** | ||
* Defines the XML configuration namespace for Spring MVC. | ||
*/ | ||
@NonNullApi | ||
@NonNullFields | ||
package io.github.benny123tw.servlet; | ||
|
||
import org.springframework.lang.NonNullApi; | ||
import org.springframework.lang.NonNullFields; |
20 changes: 20 additions & 0 deletions
20
vite-spring-webmvc-jre8/src/main/java/io/github/benny123tw/servlet/tags/package-info.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,20 @@ | ||
/** | ||
* <p>This package contains Vite's JSP standard tag library for JSP 2.0+. | ||
* Supports JSP view implementations within Spring's Web MVC framework. | ||
* For more details on each tag, see the list of tags below with links to | ||
* individual tag classes, or check the {@code vite.tld} file: | ||
* | ||
* <ul> | ||
* <li>{@link io.github.benny123tw.servlet.tags.ViteImport The import tag} | ||
* </ul> | ||
* | ||
* <p>Please note that the various tags generated by this form tag library are | ||
* compliant with https://www.w3.org/TR/xhtml1/ and attendant | ||
* https://www.w3.org/TR/xhtml1/dtds.html#a_dtd_XHTML-1.0-Strict. | ||
*/ | ||
@NonNullApi | ||
@NonNullFields | ||
package io.github.benny123tw.servlet.tags; | ||
|
||
import org.springframework.lang.NonNullApi; | ||
import org.springframework.lang.NonNullFields; |
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
9 changes: 9 additions & 0 deletions
9
vite-spring-webmvc/src/main/java/io/github/benny123tw/servlet/annotation/package-info.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,9 @@ | ||
/** | ||
* This package contains annotations for enabling Vite integration in Spring MVC applications. | ||
* | ||
* <p>The primary annotation in this package is {@link EnableVite}, which when applied to a | ||
* configuration class, imports the necessary configuration for Vite.</p> | ||
* | ||
* @see io.github.benny123tw.servlet.config.ViteConfig | ||
*/ | ||
package io.github.benny123tw.servlet.annotation; |
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
20 changes: 20 additions & 0 deletions
20
vite-spring-webmvc/src/main/java/io/github/benny123tw/servlet/config/package-info.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,20 @@ | ||
/** | ||
* This package contains the configuration classes for integrating Vite with Spring MVC applications. | ||
* | ||
* <p>Classes in this package provide configuration and beans necessary for setting up Vite in a Spring MVC | ||
* application, including properties for the Vite manifest file, local development server URL, resource paths, | ||
* and debug settings.</p> | ||
* | ||
* <p>Usage example:</p> | ||
* <pre class="code"> | ||
* @Configuration | ||
* @EnableVite | ||
* public class AppConfig { | ||
* // Your other Spring configuration | ||
* } | ||
* </pre> | ||
* | ||
* @see io.github.benny123tw.servlet.annotation.EnableVite | ||
* @see io.github.benny123tw.servlet.config.ViteConfig | ||
*/ | ||
package io.github.benny123tw.servlet.config; |