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
474df8b6
Commit
474df8b6
authored
Sep 18, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Update application layout to show packaging by features"
Closes gh-9907
parent
f948a469
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
using-spring-boot.adoc
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+4
-4
No files found.
spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
View file @
474df8b6
...
...
@@ -379,7 +379,7 @@ The `Application.java` file would declare the `main` method, along with the basi
[source,java,indent=0]
----
package com.example.my
project
;
package com.example.my
application
;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
...
...
@@ -553,7 +553,7 @@ The `@SpringBootApplication` annotation is equivalent to using `@Configuration`,
[source,java,indent=0]
----
package com.example.my
project
;
package com.example.my
application
;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
...
...
@@ -610,7 +610,7 @@ run your application using `java -jar`. For example:
[indent=0,subs="attributes"]
----
$ java -jar target/my
project
-0.0.1-SNAPSHOT.jar
$ java -jar target/my
application
-0.0.1-SNAPSHOT.jar
----
It is also possible to run a packaged application with remote debugging support enabled.
...
...
@@ -619,7 +619,7 @@ This allows you to attach a debugger to your packaged application:
[indent=0,subs="attributes"]
----
$ java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n \
-jar target/my
project
-0.0.1-SNAPSHOT.jar
-jar target/my
application
-0.0.1-SNAPSHOT.jar
----
...
...
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