Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
6c3d490c
Commit
6c3d490c
authored
Oct 27, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add note about springloaded configuration
parent
24e71e86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
howto.adoc
spring-boot-docs/src/main/asciidoc/howto.adoc
+25
-0
No files found.
spring-boot-docs/src/main/asciidoc/howto.adoc
View file @
6c3d490c
...
@@ -1562,6 +1562,31 @@ general mechanism to ensure that would be safe for a running application anyway,
...
@@ -1562,6 +1562,31 @@ general mechanism to ensure that would be safe for a running application anyway,
would only ever be a development time trick probably).
would only ever be a development time trick probably).
[[howto-reload-springloaded-maven]]
==== Configuring Spring Loaded for use with Maven
To use Spring Loaded with the Maven command line, just add it as a dependency in the
Spring Boot plugin declaration, e.g.
.pom.xml
[source,xml,indent=0]
----
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.0.RELEASE</version>
</dependency>
</dependencies>
</plugin>
----
This normally works pretty well with Eclipse and IntelliJ as long as
they have their build configuration aligned with the Maven defaults
(Eclipse m2e does this out of the box).
[[howto-reload-springloaded-gradle-and-intellij]]
[[howto-reload-springloaded-gradle-and-intellij]]
==== Configuring Spring Loaded for use with Gradle and IntelliJ
==== Configuring Spring Loaded for use with Gradle and IntelliJ
You need to jump through a few hoops if you want to use Spring Loaded in combination with
You need to jump through a few hoops if you want to use Spring Loaded in combination with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment