Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ This example describes how to deploy a Java application by using devfile and con

include::modules/developer-cli-odo-creating-a-project.adoc[leveloffset=+1]

include::modules/developer-cli-odo-creating-a-database-with-odo.adoc[leveloffset=+1]

include::modules/developer-cli-odo-creating-a-java-microservice-jpa-application.adoc[leveloffset=+1]

include::modules/developer-cli-odo-creating-a-database-with-odo.adoc[leveloffset=+1]

include::modules/developer-cli-odo-connecting-a-java-application-to-mysql-database.adoc[leveloffset=+1]
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ toc::[]
[source,terminal]
----
NAME PROJECT TAGS
dotnet openshift 2.0,latest
dotnet openshift 3.1,latest
httpd openshift 2.4,latest
java openshift 8,latest
nginx openshift 1.10,1.12,1.8,latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ After the link has been created and pushed, a secret that contains the database
+
[source,sh]
----
$ odo exec -- bash -c 'export | grep DATABASE'
$ odo exec -- bash -c 'env | grep DATABASE'
declare -x DATABASE_CLUSTERIP="10.106.182.173"
declare -x DATABASE_DB_NAME="sampledb"
declare -x DATABASE_DB_PASSWORD="samplepwd"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ With `odo`, you can create and manage a sample Java MicroServices JPA applicatio
+
[source,terminal]
----
$ git clone https://github.com/redhat-developer/application-stack-samples
$ git clone -b jpa-sample https://github.com/redhat-developer/application-stack-samples.git
----

. Navigate to the application directory:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ mkdir <directory-name>
+
[source,terminal]
----
$ odo create java-spring-boot myspring --starter
$ odo create java-springboot myspring --starter
----
+
The previous command produces the following output:
Expand Down