Script pro změnu nastavení indexu a/nebo mapování.
export BASE_URL="https://elastic-tsm-kip-ppt-a-moje.o2.cz"
export SRC_INDEX="o2-kiporder_20250904_142206"
export DEST_INDEX="o2-kiporder_20251016_000001"Správa dat a jejich životního cyklu.
Rozdělení dat dle typu:
| sidebar_position | title | description |
|---|---|---|
2 |
tSM SpEL – Quick Reference & Deep Dive |
A single, authoritative guide to the tSM Spring Expression Language – from the very first keystroke in the console to sophisticated, production-grade scripts. |
The tSM Spring Expression Language (SpEL) couples a clean, readable syntax with the full power of Java, giving you an expressive way to automate anything inside the tSM platform.
This page is your one-stop reference: a quick tour of every major SpEL concept and a thorough specification of every syntax rule, console shortcut and best-practice pattern.
| package org.springframework.expression.spel.ast | |
| import cz.datalite.tsm.commons.service.SpringContext | |
| import cz.datalite.tsm.commons.service.TsmSpelService | |
| import cz.datalite.tsm.commons.spel.SpelTestBean | |
| import cz.datalite.tsm.commons.spel.extensions.SpelContextContributorBasicFunctions | |
| import org.junit.jupiter.api.Assertions.assertEquals | |
| import org.junit.jupiter.api.Test | |
| import org.springframework.context.support.StaticApplicationContext |
| package org.springframework.expression.spel.ast | |
| import cz.datalite.tsm.commons.service.SpringContext | |
| import cz.datalite.tsm.commons.service.TsmSpelService | |
| import cz.datalite.tsm.commons.spel.SpelTestBean | |
| import cz.datalite.tsm.commons.spel.extensions.SpelContextContributorBasicFunctions | |
| import org.junit.jupiter.api.Assertions.assertEquals | |
| import org.junit.jupiter.api.Test | |
| import org.springframework.context.support.StaticApplicationContext |
| package cz.datalite.tsm.pm.model | |
| import cz.datalite.tsm.commons.model.AbstractCodeTableEntity | |
| import java.util.* | |
| class MaintenanceActivityGroup( | |
| code: String, name: String, | |
| ) : AbstractCodeTableEntity<UUID>(code, name) { | |
| } |
| package cz.datalite.tsm.pm.model | |
| import cz.datalite.tsm.commons.model.AbstractCodeTableEntity | |
| import jakarta.persistence.ManyToOne | |
| import java.util.* | |
| class MaintenanceActivityType( | |
| code: String, name: String, | |
| @ManyToOne |
| package cz.datalite.tsm.process.camunda.boot3 | |
| import jakarta.persistence.EntityManager | |
| import jakarta.persistence.EntityManagerFactory | |
| import jakarta.persistence.PersistenceException | |
| import jakarta.persistence.TransactionRequiredException | |
| import org.camunda.bpm.engine.ProcessEngine | |
| import org.camunda.bpm.engine.ProcessEngineException | |
| import org.camunda.bpm.engine.impl.cfg.* | |
| import org.camunda.bpm.engine.impl.context.Context |