Commit Graph

198 Commits

Author SHA1 Message Date
Kris De Volder
100d4b0e78 Bump version to 1.8.0 2019-05-24 18:43:50 +00:00
Martin Lippert
e94ed2c21b finally found a way to configure the tools.jar dependency in the pom file independent of the JDK that is used to run the IDE, works now with JDK8 and JDK11 2019-05-03 10:31:56 +02:00
Kris De Volder
03caa58492 Delete eclipse metadata for headless services 2019-04-29 09:13:57 -07:00
Kris De Volder
dd8cd74757 Bump version to 1.7.0 2019-04-18 16:42:04 +00:00
Martin Lippert
803ec42fd7 initial steps to keep checking manual configs on demand 2019-04-16 09:08:15 +02:00
Kris De Volder
cd9bda2a42 Small cleanups
Some minor warnings / deprecation fixes.
2019-04-01 14:06:07 -07:00
Kris De Volder
256e0c86a3 Bump version to 1.6.0 2019-03-29 16:08:45 +00:00
Kris De Volder
b07f3b0124 Allow configuring urlScheme and port for remote apps 2019-03-27 16:03:51 -07:00
BoykoAlex
043920cdca Remote boot app default port is 443 2019-03-27 14:06:34 -04:00
Kris De Volder
d86becebe7 http -> https 2019-03-08 15:48:38 -08:00
Spring Operator
4d43e68820 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://sha256timestamp.ws.symantec.com/sha256/timestamp (400) migrated to:
  http://sha256timestamp.ws.symantec.com/sha256/timestamp ([https](https://sha256timestamp.ws.symantec.com/sha256/timestamp) result ConnectTimeoutException).
* http://s3-test.spring.io/sts4/vscode-extensions/ (403) migrated to:
  http://s3-test.spring.io/sts4/vscode-extensions/ ([https](https://s3-test.spring.io/sts4/vscode-extensions/) result SSLHandshakeException).

# Fixed URLs

## Fixed Success
These URLs were fixed successfully.

* http://www.apache.org/licenses/LICENSE-2.0 migrated to:
  https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0) result 200).
2019-03-06 00:05:19 -06:00
Martin Lippert
a261770210 housekeeping 2019-02-27 11:38:40 +01:00
Kris De Volder
a7d8fa3996 Eclipse metadata 2019-02-25 10:23:40 -08:00
Kris De Volder
37e68907c6 Bump version to 1.5.0 2019-02-22 17:23:45 +00:00
Martin Lippert
593db47461 fix problem with logging causing issues for remote jmx apps 2019-02-19 16:16:46 +01:00
Martin Lippert
83c8271ddc classpath cleanup 2019-02-12 12:57:36 +01:00
nsingh@pivotal.io
eb28cfddc1 Rename live properties parser 2019-02-11 13:54:58 -08:00
nsingh@pivotal.io
cd276ddbc4 PT 163178235 - Add live properties parsing for Boot 2.x
Live properties parsing for Boot 2.x was missing and was not appearing
when hovering over @Value properties
2019-02-11 13:35:20 -08:00
Martin Lippert
fd445778b3 changed live hover checks from various classpath and property checks towards JMX bean lookup, and turned the check into parallel checks 2019-02-11 11:32:18 +01:00
Martin Lippert
dad40ae81e remove hasActuator checks before searching for live hovers 2019-02-08 13:53:29 +01:00
Kris De Volder
5250088758 Bump version to 1.4.0 2019-01-25 19:13:33 +00:00
Kris De Volder
bd7c38b2aa Bump version to 1.3.0 2019-01-24 19:07:51 +00:00
Martin Lippert
d01a3a4abb avoid long hang on jmx connection problems while checking for non-boot live beans mbean 2019-01-24 10:57:33 +01:00
Martin Lippert
674784f9a2 added missing check for boot apps, since the check for regular spring apps does not work for fat-jar boot apps 2019-01-08 11:50:25 +01:00
Martin Lippert
f0379020bc initial steps to support live bean hovers for non-boot projects 2019-01-08 11:27:55 +01:00
Kris De Volder
7d8d29be40 Bump version to 1.2.1 2018-12-22 00:15:08 +00:00
Kris De Volder
f6b81739f2 More tweaks to jmx related error handling 2018-12-06 11:33:09 -08:00
Kris De Volder
f0bd1f7f37 More tweaks to JMX related exception handling 2018-12-05 15:55:51 -08:00
Kris De Volder
9bdb7f23bd Catch and ignore more JMX errors for stopped apps 2018-12-05 12:19:19 -08:00
Kris De Volder
b9a625bee0 Suppress another JMX connection error 2018-12-05 11:55:23 -08:00
Kris De Volder
5ff4bc71e0 Supress verbose exception logging for more JMX connection errors 2018-12-05 11:34:47 -08:00
Kris De Volder
212dc74f83 Tolerate missing 'aliases' property in Boot15 bean parser 2018-12-04 15:31:18 -08:00
Kris De Volder
995e60035a Ignore java.rmi.ConnectException when closing connection 2018-12-04 15:01:11 -08:00
Kris De Volder
484420f68f Avoid NPE from AbstractSpringBootApp.getPortViaAdmin 2018-12-04 14:45:43 -08:00
Kris De Volder
2301463aaf Bump version to 1.2.0 2018-12-04 20:56:19 +00:00
Kris De Volder
6528b988d2 Fix boot ls server hang
It was caused by a forever blocking call to RMIConnector.close() for
a tunnelled JMX connection to a remote app that is no longer
there (stopped).
2018-11-29 17:21:02 -08:00
BoykoAlex
0e70a34b02 PT #162139447: Fix live RM actuator data parsing 2018-11-21 17:10:19 -05:00
BoykoAlex
4d51b21281 PT #160495895: Fix JSON parsing for app with eureka client starter 2018-11-19 17:26:04 -05:00
nsingh
3536ef71f1 Added Boot 1.x and 2.x context path tests 2018-11-13 16:10:09 -08:00
nsingh
41d64d5577 Simplified context path implementation
For boot 1.x and 2.x, now iterate through all property sources in the
order read from env. This avoids the need to have special handling for
prioritising the different types of property sources (e.g. command line
args, env vars, app config).
2018-11-09 16:16:20 -08:00
nsingh
a8757a4491 Added some "real" tests for context path
Used real actuator env json to test reading context path in priority
order, using both camel case and kebab case.
2018-11-09 16:16:20 -08:00
nsingh
0146a1c4f7 Revert back to separate properties for boot 2.x vs 1.x 2018-11-09 12:20:19 -08:00
nsingh
513c729e71 Added some comments on priority ordering when looking for context path 2018-11-08 17:59:23 -08:00
nsingh
efd29096ec Fixed minor naming error 2018-11-08 17:57:52 -08:00
nsingh
29e52b38ae Merge both boot 1.x and 2.x context path properties 2018-11-08 17:44:56 -08:00
nsingh
9179d5d167 PT 161583390 - Read context path from applicationConfig
Support for both boot 1.x and 2.x
2018-11-08 17:34:10 -08:00
nsingh
b41cd42741 PT 161583390 - Initial implementation to support context path
Added support for context path for boot 1.x and 2.x when property
defined via command line args. Also added some relevant junits for
request mappings with context paths.
2018-11-08 16:10:24 -08:00
Kris De Volder
0e931fb3c2 Bump version to 1.1.1 2018-11-06 16:16:44 +00:00
BoykoAlex
ffd6c41560 Fix: LS gets stuck with Theia client 2018-10-22 18:16:58 -04:00
Kris De Volder
fa72c26252 Cleanup some junk comments that got accidentally committed. 2018-10-16 12:30:14 -07:00