diff --git a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/AgentReloader.java b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/AgentReloader.java index f54e9c080f..f95dc41ad2 100644 --- a/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/AgentReloader.java +++ b/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/AgentReloader.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2015 the original author or authors. + * Copyright 2012-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,6 +36,7 @@ public abstract class AgentReloader { Set agentClasses = new LinkedHashSet(); agentClasses.add("org.zeroturnaround.javarebel.Integration"); agentClasses.add("org.zeroturnaround.javarebel.ReloaderFactory"); + agentClasses.add("org.hotswap.agent.HotswapAgent"); AGENT_CLASSES = Collections.unmodifiableSet(agentClasses); }