From a1bd90ccf08d5c763a4e70466c0a99c4fbf21ac1 Mon Sep 17 00:00:00 2001 From: Spring Operator Date: Tue, 19 Mar 2019 19:16:17 -0500 Subject: [PATCH] URL Cleanup This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # HTTP URLs that Could Not Be Fixed These URLs were unable to be fixed. Please review them to see if they can be manually resolved. * http://dist.gemstone.com.s3.amazonaws.com/maven/release (404) with 1 occurrences could not be migrated: ([https](https://dist.gemstone.com.s3.amazonaws.com/maven/release) result SSLHandshakeException). # Fixed URLs ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * http://maven.apache.org/xsd/maven-4.0.0.xsd with 1 occurrences migrated to: https://maven.apache.org/xsd/maven-4.0.0.xsd ([https](https://maven.apache.org/xsd/maven-4.0.0.xsd) result 200). * http://www.springframework.org/schema/beans/spring-beans.xsd with 3 occurrences migrated to: https://www.springframework.org/schema/beans/spring-beans.xsd ([https](https://www.springframework.org/schema/beans/spring-beans.xsd) result 200). * http://www.springframework.org/schema/context/spring-context-3.1.xsd with 2 occurrences migrated to: https://www.springframework.org/schema/context/spring-context-3.1.xsd ([https](https://www.springframework.org/schema/context/spring-context-3.1.xsd) result 200). * http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd with 2 occurrences migrated to: https://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd ([https](https://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd) result 200). * http://www.springframework.org/schema/util/spring-util-3.1.xsd with 2 occurrences migrated to: https://www.springframework.org/schema/util/spring-util-3.1.xsd ([https](https://www.springframework.org/schema/util/spring-util-3.1.xsd) result 200). * http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd with 2 occurrences migrated to: https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd ([https](https://java.sun.com/xml/ns/javaee/web-app_2_5.xsd) result 302). # Ignored These URLs were intentionally ignored. * http://java.sun.com/xml/ns/javaee with 2 occurrences * http://maven.apache.org/POM/4.0.0 with 2 occurrences * http://www.springframework.org/schema/beans with 6 occurrences * http://www.springframework.org/schema/context with 4 occurrences * http://www.springframework.org/schema/mvc with 4 occurrences * http://www.springframework.org/schema/p with 1 occurrences * http://www.springframework.org/schema/util with 4 occurrences * http://www.w3.org/2001/XMLSchema-instance with 5 occurrences --- vmware-au-se-sqlfireweb/pom.xml | 2 +- .../src/main/resources/query-beans.xml | 2 +- .../src/main/webapp/WEB-INF/applicationContext.xml | 8 ++++---- .../src/main/webapp/WEB-INF/spring-servlet.xml | 8 ++++---- vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/web.xml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/vmware-au-se-sqlfireweb/pom.xml b/vmware-au-se-sqlfireweb/pom.xml index 6e8c368..fc44c9b 100644 --- a/vmware-au-se-sqlfireweb/pom.xml +++ b/vmware-au-se-sqlfireweb/pom.xml @@ -1,4 +1,4 @@ - + 4.0.0 vmware.au.se.sqlfireweb sqlfireweb diff --git a/vmware-au-se-sqlfireweb/src/main/resources/query-beans.xml b/vmware-au-se-sqlfireweb/src/main/resources/query-beans.xml index e10e6af..ffcc953 100644 --- a/vmware-au-se-sqlfireweb/src/main/resources/query-beans.xml +++ b/vmware-au-se-sqlfireweb/src/main/resources/query-beans.xml @@ -20,7 +20,7 @@ --> + xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> diff --git a/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/applicationContext.xml b/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/applicationContext.xml index a759670..aba4c7c 100644 --- a/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/applicationContext.xml +++ b/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/applicationContext.xml @@ -4,10 +4,10 @@ xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xmlns:mvc="http://www.springframework.org/schema/mvc" - xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util-3.1.xsd + http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context-3.1.xsd"> diff --git a/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/spring-servlet.xml b/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/spring-servlet.xml index b42ce12..f2d8191 100644 --- a/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/spring-servlet.xml +++ b/vmware-au-se-sqlfireweb/src/main/webapp/WEB-INF/spring-servlet.xml @@ -5,10 +5,10 @@ xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" - xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> + xsi:schemaLocation="http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd + http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/util https://www.springframework.org/schema/util/spring-util-3.1.xsd + http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context-3.1.xsd"> - + vmware.au.se.sqlfireweb.utils.SessionListener