1.x
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://www.unicode.org/glossary/ (200) with 1 occurrences could not be migrated: ([https](https://www.unicode.org/glossary/) result SSLProtocolException). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * [ ] http://jansi.fusesource.org/ (ConnectTimeoutException) with 1 occurrences migrated to: https://jansi.fusesource.org/ ([https](https://jansi.fusesource.org/) result ConnectTimeoutException). * [ ] http://github.com/SpringSource/spring-shell/tree/ (301) with 1 occurrences migrated to: https://github.com/SpringSource/spring-shell/tree/ ([https](https://github.com/SpringSource/spring-shell/tree/) result 404). ## 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://static.springsource.org/spring-shell/docs/current/reference/ (301) with 1 occurrences migrated to: https://docs.spring.io/spring-shell/docs/current/reference/ ([https](https://static.springsource.org/spring-shell/docs/current/reference/) result 200). * [ ] http://docs.spring.io/spring-xd/docs/current-SNAPSHOT/reference/html/ with 1 occurrences migrated to: https://docs.spring.io/spring-xd/docs/current-SNAPSHOT/reference/html/ ([https](https://docs.spring.io/spring-xd/docs/current-SNAPSHOT/reference/html/) result 200). * [ ] http://static.springframework.org/spring/docs/2.0.x/reference/index.html (301) with 1 occurrences migrated to: https://docs.spring.io/spring/docs/2.0.x/reference/index.html ([https](https://static.springframework.org/spring/docs/2.0.x/reference/index.html) result 200). * [ ] http://sourceforge.net/projects/jline/ with 1 occurrences migrated to: https://sourceforge.net/projects/jline/ ([https](https://sourceforge.net/projects/jline/) result 200). * [ ] http://stackoverflow.com/questions/tagged/spring-shell with 1 occurrences migrated to: https://stackoverflow.com/questions/tagged/spring-shell ([https](https://stackoverflow.com/questions/tagged/spring-shell) result 200). * [ ] http://www.apache.org with 1 occurrences migrated to: https://www.apache.org ([https](https://www.apache.org) result 200). * [ ] http://www.helloworld.com with 1 occurrences migrated to: https://www.helloworld.com ([https](https://www.helloworld.com) result 200). * [ ] http://help.github.com/forking/ with 1 occurrences migrated to: https://help.github.com/forking/ ([https](https://help.github.com/forking/) result 301). * [ ] http://jira.springsource.org/secure/ReleaseNote.jspa?projectId=10361 with 1 occurrences migrated to: https://jira.springsource.org/secure/ReleaseNote.jspa?projectId=10361 ([https](https://jira.springsource.org/secure/ReleaseNote.jspa?projectId=10361) result 301). * [ ] http://repo.springsource.org/lib-release with 1 occurrences migrated to: https://repo.springsource.org/lib-release ([https](https://repo.springsource.org/lib-release) result 301). * [ ] http://www.SpringSource.com/ with 1 occurrences migrated to: https://www.SpringSource.com/ ([https](https://www.SpringSource.com/) result 301). * [ ] http://www.springframework.org with 1 occurrences migrated to: https://www.springframework.org ([https](https://www.springframework.org) result 301). * [ ] http://www.springsource.org/spring-shell with 2 occurrences migrated to: https://www.springsource.org/spring-shell ([https](https://www.springsource.org/spring-shell) result 301). * [ ] http://repo.springframework.org/libs-release with 1 occurrences migrated to: https://repo.springframework.org/libs-release ([https](https://repo.springframework.org/libs-release) result 302). * [ ] http://repo.springframework.org/libs-snapshot with 1 occurrences migrated to: https://repo.springframework.org/libs-snapshot ([https](https://repo.springframework.org/libs-snapshot) result 302). * [ ] http://repo.springframework.org/release with 1 occurrences migrated to: https://repo.springframework.org/release ([https](https://repo.springframework.org/release) result 302).
====================================================================== DEBUGGING VIA ECLIPSE ====================================================================== Most of the time we just use the spring-shell line tool directly from the command line. This we have found is the fastest approach and also lets us see exactly what a user would see, including the TAB completion features. Still, sometimes you have a tricky issue you'd prefer to work through via the STS/Eclipse debugger. When you do this you need to be aware that you lose the full capabilities of the shell, as the JLine library (used for command line parsing) is unable to fully hook into your operating system's keyboard and ANSI services. Anyhow, for some issues a debugger is worth the minor price of losing your full keyboard and colour services! :-) To setup debugging, open org.springframework.shell.Bootstrap. Note it has a Java "main" method. Execute the class using Run As > Java Application. Note the "Console" tab in Eclipse/STS will open. Type "quit" then hit enter. Now select Run > Debug Configurations. Select the Java Application > Bootstrap entry. Click on Arguments and then add the following VM Arguments: *nix machines: -Djline.terminal=org.springframework.shell.core.IdeTerminal Windows machines: -Djline.WindowsTerminal.directConsole=false -Djline.terminal=jline.UnsupportedTerminal Finally, set the working directory to "Other" and a location on your disk where you'd like the spring-shell to be loaded. This is usually a project you're intending to test with.
Description
Languages
Java
100%