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
2b304e3d
Commit
2b304e3d
authored
Jan 08, 2019
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x'
parents
5ea9ac0a
c6b42c8e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
README.adoc
README.adoc
+1
-1
SpringApplication.java
...main/java/org/springframework/boot/SpringApplication.java
+3
-3
No files found.
README.adoc
View file @
2b304e3d
...
@@ -46,7 +46,7 @@ Here is a quick teaser of a complete Spring Boot application in Java:
...
@@ -46,7 +46,7 @@ Here is a quick teaser of a complete Spring Boot application in Java:
return "Hello World!";
return "Hello World!";
}
}
public static void main(String[] args)
throws Exception
{
public static void main(String[] args) {
SpringApplication.run(Example.class, args);
SpringApplication.run(Example.class, args);
}
}
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java
View file @
2b304e3d
/*
/*
* Copyright 2012-201
8
the original author or authors.
* Copyright 2012-201
9
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -106,7 +106,7 @@ import org.springframework.web.context.support.StandardServletEnvironment;
...
@@ -106,7 +106,7 @@ import org.springframework.web.context.support.StandardServletEnvironment;
*
*
* // ... Bean definitions
* // ... Bean definitions
*
*
* public static void main(String[] args)
throws Exception
{
* public static void main(String[] args) {
* SpringApplication.run(MyApplication.class, args);
* SpringApplication.run(MyApplication.class, args);
* }
* }
* }
* }
...
@@ -117,7 +117,7 @@ import org.springframework.web.context.support.StandardServletEnvironment;
...
@@ -117,7 +117,7 @@ import org.springframework.web.context.support.StandardServletEnvironment;
* customized before being run:
* customized before being run:
*
*
* <pre class="code">
* <pre class="code">
* public static void main(String[] args)
throws Exception
{
* public static void main(String[] args) {
* SpringApplication application = new SpringApplication(MyApplication.class);
* SpringApplication application = new SpringApplication(MyApplication.class);
* // ... customize application settings here
* // ... customize application settings here
* application.run(args)
* application.run(args)
...
...
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