Skip to content

Commit cbfd71a

Browse files
committed
Update jooq dep, fix some text for better seo?
1 parent 6236b8d commit cbfd71a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ext {
1717
aws : '1.11.98', // AWS Java SDK
1818
flyway : '4.1.2', // DB migrations
1919
connectorj : '5.1.41', // JDBC MYSQL driver
20-
jooq : '3.9.1', // jOOQ
20+
jooq : '3.10.1', // jOOQ
2121
hashids : '1.0.1', // Id hashing
2222
failsafe : '1.0.4', // retry and circuit breakers
2323
jsoup : '1.10.3', // DOM parsing library

stubbornjava-webapp/src/main/java/com/stubbornjava/webapp/post/PostData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ public class PostData {
667667
posts.add(PostRaw.builder()
668668
.postId(1L)
669669
.title("Creating a local development environment with Docker Compose")
670-
.metaDesc("Setting up MySQL and Elasticsearch locally with Docker Compose to simplify your development environment.")
670+
.metaDesc("Setting up MySQL and Elasticsearch locally with Docker Compose to simplify your development environment. Docker compose mysql example and docker compose elasticsearch example.")
671671
.dateCreated(LocalDateTime.parse("2017-10-24T01:15:30"))
672672
.dateUpdated(LocalDateTime.parse("2017-10-24T01:15:30"))
673673
.javaLibs(Lists.newArrayList())

stubbornjava-webapp/ui/src/posts/creating-a-local-development-environment-with-docker-compose.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ According to their website "[Docker](https://www.docker.com/) is an open platfor
1313

1414
{{> templates/src/widgets/code/code-snippet file=dockerCompose section=dockerCompose.content language=yml}}
1515

16-
## MySQL Container
16+
## Docker Compose MySQL Container Example
1717
We are starting with a base MySQL docker image from Docker Hub and adding some customizations to the `my.cnf` file. Mainly we want to support full unicode using `utf8mb4` see [MySQL 8.0: When to use utf8mb3 over utf8mb4?](http://mysqlserverteam.com/mysql-8-0-when-to-use-utf8mb3-over-utf8mb4/) for more info.
1818

1919
### MySQL Dockerfile
@@ -31,7 +31,7 @@ Create databases and users or anything else needed to bootstrap.
3131

3232
{{> templates/src/widgets/code/code-snippet file=mysqlSetup section=mysqlSetup.content}}
3333

34-
## Elasticsearch Contianer
34+
## Docker Compose Elasticsearch Contianer Example
3535
Since we are just using the default ES container we don't need a separate Dockerfile here. All of the configuration can be passed in directly from the docker compose file. Take note this is a single server set up which is probably ok for local development or small projects but you will probably want a better setup for non local environments.
3636

3737
## Running the dev environment

0 commit comments

Comments
 (0)