You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/02/04 06:35:43 UTC

[isis] branch ISIS-2504 updated (cad5f8f -> 97f8b80)

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

ahuber pushed a change to branch ISIS-2504
in repository https://gitbox.apache.org/repos/asf/isis.git.


    from cad5f8f  ISIS-2504: removes metadata for removed config parameters
     add e84d59a  ISIS-2504: simplified datasource url enumeration
     new 97f8b80  ISIS-2504: adds some java-doc

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.


Summary of changes:
 core/config/pom.xml                                | 11 ------
 .../DataSourceIntrospectionService.java            | 39 ++++++----------------
 2 files changed, 10 insertions(+), 40 deletions(-)


[isis] 01/01: ISIS-2504: adds some java-doc

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

ahuber pushed a commit to branch ISIS-2504
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 97f8b80c943c24c744d1d536b098a3a1ed5cfc82
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Feb 4 07:35:10 2021 +0100

    ISIS-2504: adds some java-doc
---
 .../core/config/datasources/DataSourceIntrospectionService.java     | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java b/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java
index 137e4e4..5a4e85f 100644
--- a/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java
+++ b/core/config/src/main/java/org/apache/isis/core/config/datasources/DataSourceIntrospectionService.java
@@ -40,10 +40,12 @@ import lombok.Value;
 import lombok.extern.log4j.Log4j2;
 
 /**
- * For a given <i>Spring</i> context, provides utilities to introspect the list of 
- * configured data-sources.
+ * For a given <i>Spring</i> context, makes information about configured data-sources available.
+ * 
+ * @apiNote The {@link DataSourceInfo} value type can be extended as needed.
  *  
  * @since 2.0 {@index}
+ * @see <a href="https://stackoverflow.com/questions/44446597/where-does-the-default-datasource-url-for-h2-come-from-on-spring-boot">stackoverflow.com</a>
  */
 @Service
 @Named("isis.config.DataSourceIntrospectionService")