Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tidb: rename products #13692

Merged
merged 19 commits into from
Jun 2, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update tidb-cloud-guide-sample-application-java.md
  • Loading branch information
qiancai committed Jun 2, 2023
commit 00019aab05d0325093fa5d7c44dcec7a4cfd0ad6
12 changes: 6 additions & 6 deletions tidb-cloud/tidb-cloud-guide-sample-application-java.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ This document describes how to use TiDB and Java to build a simple CRUD applicat

The following introduces how to start a TiDB cluster.

**Use a TiDB Cloud Serverless Tier cluster**
**Use a TiDB Serverless cluster**

For detailed steps, see [Create a Serverless Tier cluster](/develop/dev-guide-build-cluster-in-cloud.md#step-1-create-a-serverless-tier-cluster).
For detailed steps, see [Create a TiDB Serverless cluster](/develop/dev-guide-build-cluster-in-cloud.md##step-1-create-a-tidb-serverless-cluster).

**Use a local cluster**

Expand All @@ -35,7 +35,7 @@ For detailed steps, see [Deploy a local test cluster](/quick-start-with-tidb.md#

<CustomContent platform="tidb-cloud">

See [Create a Serverless Tier cluster](/develop/dev-guide-build-cluster-in-cloud.md#step-1-create-a-serverless-tier-cluster).
See [Create a TiDB Serverless cluster](/develop/dev-guide-build-cluster-in-cloud.md##step-1-create-a-tidb-serverless-cluster).

</CustomContent>

Expand Down Expand Up @@ -1449,7 +1449,7 @@ When using JDBC, you need to connect to your cluster and run the statement in th

<div label="Using Mybatis (Recommended)" value="mybatis">

If you are using a TiDB Cloud Serverless Tier cluster, modify the `dataSource.url`, `dataSource.username`, `dataSource.password` in `mybatis-config.xml`.
If you are using a TiDB Serverless cluster, modify the `dataSource.url`, `dataSource.username`, `dataSource.password` in `mybatis-config.xml`.

```xml
<?xml version="1.0" encoding="UTF-8" ?>
Expand Down Expand Up @@ -1524,7 +1524,7 @@ In this case, you can modify the parameters in `dataSource` node as follows:

<div label="Using Hibernate (Recommended)" value="hibernate">

If you are using a TiDB Cloud Serverless Tier cluster, modify the `hibernate.connection.url`, `hibernate.connection.username`, `hibernate.connection.password` in `hibernate.cfg.xml`.
If you are using a TiDB Serverless cluster, modify the `hibernate.connection.url`, `hibernate.connection.username`, `hibernate.connection.password` in `hibernate.cfg.xml`.

```xml
<?xml version='1.0' encoding='utf-8'?>
Expand Down Expand Up @@ -1590,7 +1590,7 @@ In this case, you can modify the parameters as follows:

<div label="Using JDBC" value="jdbc">

If you are using a TiDB Cloud Serverless Tier cluster, modify the parameters of the host, port, user, and password in `JDBCExample.java`:
If you are using a TiDB Serverless cluster, modify the parameters of the host, port, user, and password in `JDBCExample.java`:

```java
mysqlDataSource.setServerName("localhost");
Expand Down