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
ab4dec58
Commit
ab4dec58
authored
Dec 09, 2013
by
Dave Syer
Committed by
Phillip Webb
Dec 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename packages in samples
parent
332f23a0
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
25 additions
and
15 deletions
+25
-15
SampleActuatorUiApplication.java
.../boot/sample/actuator/ui/SampleActuatorUiApplication.java
+1
-1
SampleActuatorUiApplicationPortTests.java
...ple/actuator/ui/SampleActuatorUiApplicationPortTests.java
+2
-1
SampleActuatorUiApplicationTests.java
.../sample/actuator/ui/SampleActuatorUiApplicationTests.java
+2
-1
HelloWorldService.java
...ringframework/boot/sample/actuator/HelloWorldService.java
+1
-1
SampleActuatorApplication.java
...ework/boot/sample/actuator/SampleActuatorApplication.java
+1
-1
SampleController.java
...pringframework/boot/sample/actuator/SampleController.java
+1
-1
ServiceProperties.java
...ringframework/boot/sample/actuator/ServiceProperties.java
+1
-1
EndpointsPropertiesSampleActuatorApplicationTests.java
...or/EndpointsPropertiesSampleActuatorApplicationTests.java
+2
-1
ManagementAddressSampleActuatorApplicationTests.java
...ator/ManagementAddressSampleActuatorApplicationTests.java
+2
-1
ManagementSampleActuatorApplicationTests.java
...le/actuator/ManagementSampleActuatorApplicationTests.java
+2
-1
NoManagementSampleActuatorApplicationTests.java
.../actuator/NoManagementSampleActuatorApplicationTests.java
+2
-1
SampleActuatorApplicationTests.java
.../boot/sample/actuator/SampleActuatorApplicationTests.java
+2
-1
ShutdownSampleActuatorApplicationTests.java
...mple/actuator/ShutdownSampleActuatorApplicationTests.java
+2
-1
UnsecureManagementSampleActuatorApplicationTests.java
...tor/UnsecureManagementSampleActuatorApplicationTests.java
+2
-1
UnsecureSampleActuatorApplicationTests.java
...mple/actuator/UnsecureSampleActuatorApplicationTests.java
+2
-1
No files found.
spring-boot-samples/spring-boot-sample-actuator-ui/src/main/java/org/springframework/boot/sample/
ops
/ui/SampleActuatorUiApplication.java
→
spring-boot-samples/spring-boot-sample-actuator-ui/src/main/java/org/springframework/boot/sample/
actuator
/ui/SampleActuatorUiApplication.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
.
ui
;
package
org
.
springframework
.
boot
.
sample
.
actuator
.
ui
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.Map
;
import
java.util.Map
;
...
...
spring-boot-samples/spring-boot-sample-actuator-ui/src/test/java/org/springframework/boot/sample/
ops
/ui/SampleActuatorUiApplicationPortTests.java
→
spring-boot-samples/spring-boot-sample-actuator-ui/src/test/java/org/springframework/boot/sample/
actuator
/ui/SampleActuatorUiApplicationPortTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
.
ui
;
package
org
.
springframework
.
boot
.
sample
.
actuator
.
ui
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
...
@@ -29,6 +29,7 @@ import org.junit.AfterClass;
...
@@ -29,6 +29,7 @@ import org.junit.AfterClass;
import
org.junit.BeforeClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.actuator.ui.SampleActuatorUiApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.http.ResponseEntity
;
...
...
spring-boot-samples/spring-boot-sample-actuator-ui/src/test/java/org/springframework/boot/sample/
ops
/ui/SampleActuatorUiApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator-ui/src/test/java/org/springframework/boot/sample/
actuator
/ui/SampleActuatorUiApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
.
ui
;
package
org
.
springframework
.
boot
.
sample
.
actuator
.
ui
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.Arrays
;
import
java.util.Arrays
;
...
@@ -28,6 +28,7 @@ import org.junit.AfterClass;
...
@@ -28,6 +28,7 @@ import org.junit.AfterClass;
import
org.junit.BeforeClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.actuator.ui.SampleActuatorUiApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpEntity
;
import
org.springframework.http.HttpEntity
;
import
org.springframework.http.HttpHeaders
;
import
org.springframework.http.HttpHeaders
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
ops
/HelloWorldService.java
→
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
actuator
/HelloWorldService.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
ops
/SampleActuatorApplication.java
→
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
actuator
/SampleActuatorApplication.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
ops
/SampleController.java
→
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
actuator
/SampleController.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
java.util.Collections
;
import
java.util.Collections
;
import
java.util.Map
;
import
java.util.Map
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
ops
/ServiceProperties.java
→
spring-boot-samples/spring-boot-sample-actuator/src/main/java/org/springframework/boot/sample/
actuator
/ServiceProperties.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/EndpointsPropertiesSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/EndpointsPropertiesSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
...
@@ -28,6 +28,7 @@ import java.util.concurrent.TimeUnit;
...
@@ -28,6 +28,7 @@ import java.util.concurrent.TimeUnit;
import
org.junit.After
;
import
org.junit.After
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/ManagementAddressSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/ManagementAddressSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
...
@@ -32,6 +32,7 @@ import org.junit.BeforeClass;
...
@@ -32,6 +32,7 @@ import org.junit.BeforeClass;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/ManagementSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/ManagementSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.Map
;
import
java.util.Map
;
...
@@ -27,6 +27,7 @@ import org.junit.AfterClass;
...
@@ -27,6 +27,7 @@ import org.junit.AfterClass;
import
org.junit.BeforeClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.http.ResponseEntity
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/NoManagementSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/NoManagementSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
...
@@ -30,6 +30,7 @@ import org.junit.BeforeClass;
...
@@ -30,6 +30,7 @@ import org.junit.BeforeClass;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/SampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/SampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
...
@@ -36,6 +36,7 @@ import org.junit.BeforeClass;
...
@@ -36,6 +36,7 @@ import org.junit.BeforeClass;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpEntity
;
import
org.springframework.http.HttpEntity
;
import
org.springframework.http.HttpHeaders
;
import
org.springframework.http.HttpHeaders
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/ShutdownSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/ShutdownSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
...
@@ -30,6 +30,7 @@ import org.junit.BeforeClass;
...
@@ -30,6 +30,7 @@ import org.junit.BeforeClass;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.autoconfigure.security.SecurityProperties
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpRequest
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/UnsecureManagementSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/UnsecureManagementSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
...
@@ -31,6 +31,7 @@ import org.junit.AfterClass;
...
@@ -31,6 +31,7 @@ import org.junit.AfterClass;
import
org.junit.BeforeClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.http.ResponseEntity
;
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
ops
/UnsecureSampleActuatorApplicationTests.java
→
spring-boot-samples/spring-boot-sample-actuator/src/test/java/org/springframework/boot/sample/
actuator
/UnsecureSampleActuatorApplicationTests.java
View file @
ab4dec58
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
* limitations under the License.
* limitations under the License.
*/
*/
package
org
.
springframework
.
boot
.
sample
.
ops
;
package
org
.
springframework
.
boot
.
sample
.
actuator
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.util.Map
;
import
java.util.Map
;
...
@@ -27,6 +27,7 @@ import org.junit.AfterClass;
...
@@ -27,6 +27,7 @@ import org.junit.AfterClass;
import
org.junit.BeforeClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.junit.Test
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.sample.actuator.SampleActuatorApplication
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.context.ConfigurableApplicationContext
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.http.ResponseEntity
;
...
...
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