Ops -> Actuator

pull/9/head
Dave Syer 11 years ago
parent ec3c5b5321
commit 5995b7727a

@ -143,15 +143,15 @@ can also watch files, automatically recompiling and restarting when they change.
*See [spring-boot-cli/README.md](spring-boot-cli/README.md).* *See [spring-boot-cli/README.md](spring-boot-cli/README.md).*
### spring-boot-ops ### spring-boot-actuator
Ops uses auto-configuration to decorate your application with features that The Actuator uses auto-configuration to decorate your application with features that
make it instantly deployable and supportable in production. For instance if you are make it instantly deployable and supportable in production. For instance if you are
writing a JSON web service then it will provide a server, security, logging, externalized writing a JSON web service then it will provide a server, security, logging, externalized
configuration, management endpoints, an audit abstraction, and more. If you want to configuration, management endpoints, an audit abstraction, and more. If you want to
switch off the built in features, or extend or replace them, it makes that really easy as switch off the built in features, or extend or replace them, it makes that really easy as
well. well.
_See [spring-boot-ops/README.md](spring-boot-ops/README.md)._ _See [spring-boot-actuator/README.md](spring-boot-actuator/README.md)._
### spring-boot-loader ### spring-boot-loader
@ -176,8 +176,8 @@ samples are provided:
* [spring-boot-sample-simple](spring-boot-sample-simple) - A simple command line application * [spring-boot-sample-simple](spring-boot-sample-simple) - A simple command line application
* [spring-boot-sample-tomcat](spring-boot-sample-tomcat) - Embedded Tomcat * [spring-boot-sample-tomcat](spring-boot-sample-tomcat) - Embedded Tomcat
* [spring-boot-sample-jetty](spring-boot-sample-jetty) - Embedded Jetty * [spring-boot-sample-jetty](spring-boot-sample-jetty) - Embedded Jetty
* [spring-boot-sample-ops](spring-boot-sample-ops) - Simple REST service with production features * [spring-boot-sample-actuator](spring-boot-sample-actuator) - Simple REST service with production features
* [spring-boot-sample-ops-ui](spring-boot-sample-ops-ui) - A web UI example with production features * [spring-boot-sample-actuator-ui](spring-boot-sample-actuator-ui) - A web UI example with production features
* [spring-boot-sample-web-ui](spring-boot-sample-web-ui) - A thymeleaf web application * [spring-boot-sample-web-ui](spring-boot-sample-web-ui) - A thymeleaf web application
* [spring-boot-sample-web-static](spring-boot-sample-web-static) - A web application service static files * [spring-boot-sample-web-static](spring-boot-sample-web-static) - A web application service static files
* [spring-sample-batch](spring-sample-batch) - Define and run a Batch job in a few lines of code * [spring-sample-batch](spring-sample-batch) - Define and run a Batch job in a few lines of code

@ -44,7 +44,7 @@
<module>spring-boot-loader-tools</module> <module>spring-boot-loader-tools</module>
<module>spring-boot-maven-plugin</module> <module>spring-boot-maven-plugin</module>
<module>spring-boot-gradle-plugin</module> <module>spring-boot-gradle-plugin</module>
<module>spring-boot-ops</module> <module>spring-boot-actuator</module>
<module>spring-boot-starters</module> <module>spring-boot-starters</module>
<module>spring-boot-cli</module> <module>spring-boot-cli</module>
<module>spring-boot-integration-tests</module> <module>spring-boot-integration-tests</module>

@ -1,4 +1,4 @@
# Spring Boot Ops # Spring Boot Actuator
The aim of this project is minimum fuss for getting applications up The aim of this project is minimum fuss for getting applications up
and running in production, and in other environments. There is a and running in production, and in other environments. There is a
@ -24,7 +24,7 @@ are more generic than that.
For a quick introduction and to get started quickly with a new For a quick introduction and to get started quickly with a new
project, carry on reading. For more in depth coverage of the features project, carry on reading. For more in depth coverage of the features
of Spring Boot Ops, go to the of Spring Boot Actuator, go to the
[Feature Guide](docs/Features.md). [Feature Guide](docs/Features.md).
# Getting Started # Getting Started

@ -7,7 +7,7 @@
<artifactId>spring-boot-parent</artifactId> <artifactId>spring-boot-parent</artifactId>
<version>0.5.0.BUILD-SNAPSHOT</version> <version>0.5.0.BUILD-SNAPSHOT</version>
</parent> </parent>
<artifactId>spring-boot-ops</artifactId> <artifactId>spring-boot-actuator</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
<main.basedir>${basedir}/..</main.basedir> <main.basedir>${basedir}/..</main.basedir>

@ -13,8 +13,8 @@
<main.basedir>${basedir}/..</main.basedir> <main.basedir>${basedir}/..</main.basedir>
</properties> </properties>
<modules> <modules>
<module>spring-boot-sample-ops</module> <module>spring-boot-sample-actuator</module>
<module>spring-boot-sample-ops-ui</module> <module>spring-boot-sample-actuator-ui</module>
<module>spring-boot-sample-batch</module> <module>spring-boot-sample-batch</module>
<module>spring-boot-sample-data-jpa</module> <module>spring-boot-sample-data-jpa</module>
<module>spring-boot-sample-integration</module> <module>spring-boot-sample-integration</module>

@ -7,7 +7,7 @@
<artifactId>spring-boot-samples</artifactId> <artifactId>spring-boot-samples</artifactId>
<version>0.5.0.BUILD-SNAPSHOT</version> <version>0.5.0.BUILD-SNAPSHOT</version>
</parent> </parent>
<artifactId>spring-boot-sample-ops-ui</artifactId> <artifactId>spring-boot-sample-actuator-ui</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
<main.basedir>${basedir}/../..</main.basedir> <main.basedir>${basedir}/../..</main.basedir>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save