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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ cd weblogic-examples

[^1]: To deploy WebLogic Cafe to WebLogic 15.1.1 (BETA), follow this [tutorial](https://github.com/oracle-samples/weblogic-examples/blob/main/tutorials/migrate/weblogic-cafe-15.1.1/README.md) to upgrade the application to use Jakarta EE 9.1 and Java 21 on WebLogic.

[^2]: To deploy Spring Framework PetClinic to WebLogic 15.1.1 (BETA), **first** follow the app migration [tutorial](https://github.com/oracle-samples/weblogic-examples/blob/main/tutorials/migrate/spring-framework-petclinic-15.1.1/README.md), then follow the deploy tutorial [here](https://github.com/oracle-samples/weblogic-examples/blob/main/tutorials/deploy/deploy-petclinic-container-14.1.2/README.md).

[^2]: To deploy Spring Framework PetClinic to WebLogic 15.1.1 (BETA), **first** follow the app migration [tutorial](https://github.com/oracle-samples/weblogic-examples/blob/main/tutorials/migrate/spring-framework-petclinic-15.1.1/README.md), then follow either [deploy-in-container](https://github.com/oracle-samples/weblogic-examples/blob/main/tutorials/deploy/petclinic-in-container-14.1.2/README.md) or [deploy-traditional](https://github.com/oracle-samples/weblogic-examples/blob/main/tutorials/deploy/deploy-petclinic-weblogic-12.2.1.4/README.md) tutorial.


### Tutorials
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Deploy Spring Framework PetClinic to WebLogic Server 12.2.1.4
This tutorial demonstrates how to deploy the [Spring Framework PetClinic](https://github.com/spring-petclinic/spring-framework-petclinic/tree/5.3.x) example application to WebLogic Server 12.2.1.4 running on an Oracle Linux host. For a containerized deployment, see [Deploy Spring Framework PetClinic to WLS 14.1.2 running in a container](../../deploy/deploy-petclinic-container-14.1.2/README.md).
This tutorial demonstrates how to deploy the [Spring Framework PetClinic](https://github.com/spring-petclinic/spring-framework-petclinic/tree/5.3.x) example application to WebLogic Server 12.2.1.4 running on an Oracle Linux host. For a containerized deployment, see [Deploy Spring Framework PetClinic to WLS 14.1.2 running in a container](../../deploy/petclinic-in-container-14.1.2/README.md).

> [!TIP]
> If you want to deploy the example application to WebLogic Server 15.1.1 (BETA), first follow the [Migrate Spring Framework PetClinic to WLS 15.1.1(BETA)](../../migrate/spring-framework-petclinic-15.1.1/README.md) tutorial, then follow the procedure here.
Expand Down
2 changes: 1 addition & 1 deletion tutorials/deploy/petclinic-in-container-14.1.2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Deploy the Spring Framework PetClinic example to the WebLogic Server 14.1.2 cont

1. If not already installed, download and install the WebLogic Server Remote Console (WRC) from [`github.com/oracle/weblogic-remote-console`](https://github.com/oracle/weblogic-remote-console/releases).

1. [Deploy](https://docs-uat.us.oracle.com/en/middleware/fusion-middleware/weblogic-remote-console/administer/deploying-applications.html#GUID-6148F650-4FB8-4F4E-A578-C733D275C0A2) and start the Spring Framework PetClinic example application.
1. [Deploy](https://docs.oracle.com/en/middleware/fusion-middleware/weblogic-remote-console/administer/deploying-applications.html) and start the Spring Framework PetClinic example application.

### Step 7: Access the Spring Framework PetClinic example

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Oracle provides OpenRewrite recipes to help you upgrade your applications to new

## Spring Framework PetClinic example

We'll step through this tutorial using the Spring Framework Pet Clinic example that is available in this GitHub repo: [`spring-framework-petclinic-12.2.1.4` sample](../../../samples/spring-framework-petclinic-12.2.1.4/). This is a fork of the approved [fork](https://github.com/spring-petclinic/spring-framework-petclinic/tree/5.3.x) from the Spring Team, a PetClinic version with a plain old Spring Framework 5.3.x configuration and with a 3-layer architecture (i.e. presentation --> service --> repository) and was modified to run on WebLogic 12.2.1.4. We will run the `rewrite-weblogic` recipes locally, so we'll need a copy of the code locally, too.
We'll step through this tutorial using the [Spring Framework Pet Clinic](https://github.com/spring-petclinic/spring-framework-petclinic/tree/5.3.x) example that is available from the Spring Team, a PetClinic version with a plain old Spring Framework 5.3.x configuration and with a 3-layer architecture (i.e. presentation --> service --> repository). We will run the `rewrite-weblogic` recipes locally, so we'll need a copy of the code locally, too.

![Spring Framework PetClinic](https://cloud.githubusercontent.com/assets/838318/19727082/2aee6d6c-9b8e-11e6-81fe-e889a5ddfded.png)

Expand Down Expand Up @@ -79,7 +79,6 @@ For this example, we will upgrade the Spring Framework PetClinic application to

Preferably, you should open a terminal within your IDE so that you can easily review changes to the source files after running the recipes.

![VSCode - open an integrated terminal](../../images/integ-terminal-vscode.png)

1. Run the following command to run OpenRewrite:

Expand Down