Чтобы создать новый Maven проект с нуля и добавить в него зависимость от tarantool-spring-data-32, выполните следующие шаги:
Используйте Maven Archetype Plugin для создания нового проекта. В этом примере мы создадим простой Java проект:
| SELECT 'ONLINELOG' AS LOG_TYPE, GROUP# AS GROUP_OR_SEQUENCE, MEMBER AS FILE_NAME | |
| FROM V$LOGFILE | |
| WHERE MEMBER LIKE '+%' | |
| UNION ALL | |
| SELECT 'ARCHIVELOG' AS LOG_TYPE, SEQUENCE# AS GROUP_OR_SEQUENCE, NAME AS FILE_NAME | |
| FROM V$ARCHIVED_LOG | |
| WHERE NAME LIKE '+%'; |
| --- | |
| kind: PodMonitor | |
| apiVersion: monitoring.coreos.com/v1 | |
| metadata: | |
| name: tqe-grpc-monitor | |
| namespace: monitoring | |
| spec: | |
| namespaceSelector: | |
| matchNames: | |
| - tarantool-cdc-demo |
| SELECT acc.column_name | |
| FROM all_constraints ac | |
| JOIN all_cons_columns acc | |
| ON ac.owner = acc.owner | |
| AND ac.constraint_name = acc.constraint_name | |
| WHERE ac.table_name = 'YOUR_TABLE_NAME' | |
| AND ac.constraint_type = 'P' | |
| AND ac.owner = 'YOUR_SCHEMA_NAME'; |
| diff --git a/pom.xml b/pom.xml | |
| index 975111a..8d917f9 100644 | |
| --- a/pom.xml | |
| +++ b/pom.xml | |
| @@ -19,15 +19,10 @@ | |
| <artifactId>spring-boot-starter</artifactId> | |
| <version>3.2.12</version> | |
| </dependency> | |
| - <dependency> | |
| - <groupId>org.springframework.boot</groupId> |
| diff --git a/pom.xml b/pom.xml | |
| index 674664b..975111a 100644 | |
| --- a/pom.xml | |
| +++ b/pom.xml | |
| @@ -14,5 +14,20 @@ | |
| <version>3.8.1</version> | |
| <scope>test</scope> | |
| </dependency> | |
| + <dependency> | |
| + <groupId>org.springframework.boot</groupId> |
| mvn release:perform -DconnectionUrl=scm:git:git@github.com:your_org/your_repo.git -Dtag=10.3.3 |
| msgpack = require'msgpack' | |
| datetime = require'datetime' | |
| conn = require('net.box').connect('localhost:3301') | |
| IPROTO_REQUEST_TYPE = 0x00 | |
| IPROTO_SYNC = 0x01 | |
| IPROTO_TUPLE = 0x21 | |
| IPROTO_FUNCTION_NAME = 0x22 | |
| IPROTO_EXPR = 0x27 |