The Java port targets Spring-Boot consumers on Maven. It ships the full metamodel
- loader + conformance + OMDB runtime persistence engine + the FR-004 render engine,
plus the
metaobjects-maven-pluginfor build-time codegen (mvn metaobjects:generate/metaobjects:editor).
Schema migrations are owned by the TypeScript toolchain (@metaobjectsdev/cli migrate);
the Java diff-and-converge migration engine and its meta:migrate / live-DB-drift
metaobjects:verify Maven goals were removed. Per ADR-0015 the OMDB runtime auto-create
path was also removed — OMDB is pure data-access (CRUD/query/codec/transactions).
Prompt / template drift is still checked via the metaobjects-render Verify API.
Set ${metaobjects.version} to the current Maven Central release (7.25.0) — both
the dependency and plugin blocks below resolve it from one <properties> entry:
<!-- pom.xml -->
<properties>
<metaobjects.version>7.25.0</metaobjects.version>
</properties>
<dependencies>
<dependency>
<groupId>com.metaobjects</groupId>
<artifactId>metaobjects-metadata</artifactId>
<version>${metaobjects.version}</version>
</dependency>
<dependency>
<groupId>com.metaobjects</groupId>
<artifactId>metaobjects-omdb</artifactId>
<version>${metaobjects.version}</version>
</dependency>
<dependency>
<groupId>com.metaobjects</groupId>
<artifactId>metaobjects-render</artifactId>
<version>${metaobjects.version}</version>
</dependency>
</dependencies>For Spring integration: add metaobjects-core-spring.
<build>
<plugins>
<plugin>
<groupId>com.metaobjects</groupId>
<artifactId>metaobjects-maven-plugin</artifactId>
<version>${metaobjects.version}</version>
<executions>
<execution>
<id>generate</id>
<phase>generate-sources</phase>
<goals><goal>generate</goal></goals>
<configuration>
<loader>
<sourceDir>src/main/metaobjects</sourceDir>
</loader>
<generators>
<generator>
<classname>com.metaobjects.generator.spring.SpringDtoGenerator</classname>
<args>
<outputDir>${project.build.directory}/generated-sources/java</outputDir>
</args>
</generator>
<generator>
<classname>com.metaobjects.generator.spring.SpringControllerGenerator</classname>
<args>
<outputDir>${project.build.directory}/generated-sources/java</outputDir>
</args>
</generator>
<generator>
<classname>com.metaobjects.generator.spring.SpringRepositoryGenerator</classname>
<args>
<outputDir>${project.build.directory}/generated-sources/java</outputDir>
</args>
</generator>
</generators>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>Drop metadata under src/main/metaobjects/:
Java uses SPI auto-discovery for type providers — drop your provider
class on the classpath, list its FQCN in
META-INF/services/com.metaobjects.registry.MetaDataTypeProvider, and
MetaDataRegistry.getInstance() will compose it in dependency order
alongside the core providers:
// src/main/java/com/example/providers/ExampleToolcallProvider.java
package com.example.providers;
import com.metaobjects.registry.MetaDataTypeProvider;
import com.metaobjects.registry.MetaDataRegistry;
public class ExampleToolcallProvider implements MetaDataTypeProvider {
@Override public String getProviderId() { return "example-template-toolcall"; }
@Override public String[] getDependencies() { return new String[] { "core-types" }; }
@Override public void registerTypes(MetaDataRegistry registry) {
// registry.register(...) — see the cross-port contract
}
}# src/main/resources/META-INF/services/com.metaobjects.registry.MetaDataTypeProvider
com.example.providers.ExampleToolcallProvider
The provider contract is structurally identical to TS / C# / Python (id +
dependencies + description + registerTypes body); the loader composes
all providers via Kahn's algorithm and emits the same stable error codes
on failure (ERR_PROVIDER_DUPLICATE_ID, _MISSING_DEPENDENCY,
_DEPENDENCY_CYCLE).
For callers who want to bypass SPI auto-discovery — or compose extra
consumer vocabulary on top of the full metamodel provider set so it still
strict-loads against the spec contract (no --lax fallback) — the
sanctioned seam is
RegistryManifest.composeMetamodelRegistry(extraProviders), which composes
the core metamodel providers plus extraProviders and runs the full
spec-description + provenance-safe attr-scoping pipeline (hand the result
to loader.setTypeRegistry(...)). Raw MetaDataRegistry.compose(...)
composes only the explicit list, skips spec scoping, and is for
internal/test partial sets. The cross-port contract lives in
../features/extending-with-providers.md.
mvn compile # runs the generate goal (bound to generate-sources)Schema migrations are not a Java-port concern — author them with the TypeScript
toolchain (@metaobjectsdev/cli migrate), then apply the resulting DDL to the
database OMDB connects to. OMDB itself is pure data-access; the former runtime
auto-create path was removed per ADR-0015.
OMDB reads the same metadata at runtime and drives CRUD; no per-entity ORM boilerplate.
codegen-spring's only entity-shaped output is the immutable <Entity>Dto
record — it generates no typed entity POJO. (A typed MetaObjectAware class
is available separately, from JavaObjectCodeGenerator's flavored codegen —
see Serializing generated objects below.)
OMDB drives CRUD against the loaded metadata plus generic ValueObject
instances, and its API is connection-first (you pass an ObjectConnection to
each call):
import com.metaobjects.loader.MetaDataLoader;
import com.metaobjects.manager.ObjectConnection;
import com.metaobjects.manager.QueryOptions;
import com.metaobjects.manager.db.ObjectManagerDB;
import com.metaobjects.manager.exp.Expression;
import com.metaobjects.object.MetaObject;
import com.metaobjects.object.value.ValueObject;
import javax.sql.DataSource;
import java.nio.file.Path;
import java.util.Collection;
public class App {
public static void main(String[] args) throws Exception {
MetaDataLoader loader = MetaDataLoader.fromDirectory(
"app", Path.of("src/main/metaobjects"));
DataSource ds = /* your javax.sql.DataSource */;
ObjectManagerDB om = new ObjectManagerDB();
om.setDataSource(ds);
om.init();
MetaObject author = loader.getMetaObjectByName("acme::blog::Author");
ObjectConnection oc = om.getConnection();
try {
// CREATE — a generic ValueObject typed by the Author MetaObject
ValueObject row = (ValueObject) author.newInstance();
row.setString("name", "Ada");
om.createObject(oc, row);
oc.commit();
// QUERY — all rows, or filtered via an Expression
Collection<?> all = om.getObjects(oc, author, new QueryOptions());
ValueObject match = (ValueObject) om.getObjects(
oc, author, new QueryOptions(new Expression("name", "Ada")))
.iterator().next();
// LOAD by primary key — re-reads the row into the object
om.loadObject(oc, match);
} finally {
om.releaseConnection(oc);
}
}
}Spring wiring lives in metaobjects-core-spring; declare an ObjectManagerDB
bean with the Spring DataSource and let Spring inject it into your services.
import com.metaobjects.render.*;
import java.nio.file.Path;
import java.util.List;
import java.util.Map;
Provider provider = new FilesystemProvider(Path.of("./prompts"));
Map<String, Object> payload = Map.of(
"displayName", "Ada",
"postCount", 12L,
"posts", List.of(Map.of("title", "Hello")));
// RenderRequest is a record (template, ref, payload, provider, format, verify, maxChars);
// pass a null template for a provider-resolved ref, and null verify/maxChars.
// render() is an instance method.
String out = new Renderer().render(
new RenderRequest(null, "lobby/welcome", payload, provider, "xml", null, null));Verify.check(templateText, fields, options) returns a List<VerifyError> (empty
= no drift) — it cross-checks a template's variables against its declared payload
field tree (List<PayloadField>), flagging any variable absent from the payload
(ERR_VAR_NOT_ON_PAYLOAD), unresolved partials, and unused required slots. Wire it
into a Maven test (e.g. a JUnit assertion in the test phase).
This table is complete: it lists every generator in Java's
com.metaobjects.generator.GeneratorRegistry, and a test fails if the registry gains one
this page does not name. There is no default suite on the JVM — <generators> in the pom
is the complete list, one <generator> entry per generator you want — so a generator
missing from this page is one an adopter has no way to discover.
The stable name is the cross-port spelling pinned in
fixtures/generator-registry-conformance/registry.json; the same concept carries the same
name in every port.
| Stable name | Generator | Module | Output |
|---|---|---|---|
routes |
SpringControllerGenerator |
metaobjects-codegen-spring |
One <Entity>Controller.java per writable entity (source.rdb @kind="table"). Spring Boot 3.x / Spring Web MVC. Five CRUD endpoints (GET list / GET by id / POST / PATCH + PUT / DELETE) matching the cross-port REST API contract. ?sort, ?limit/?offset, ?withCount=1 envelope, 404 + 400 envelopes per the contract. Filter operators (eq/ne/gt/gte/lt/lte/in/like/isNull) ship via the generated <Entity>FilterAllowlist + the runtime FilterParser, wired directly into the list handler. |
dto |
SpringDtoGenerator |
metaobjects-codegen-spring |
One <Entity>Dto.java per entity as a Java 21 record. Wrapped-primitive components (Long, Integer, Boolean) so missing JSON properties deserialise to null. Currency = Long (integer minor units cross-port invariant). Used as both request and response body. |
repository |
SpringRepositoryGenerator |
metaobjects-codegen-spring |
One <Entity>Repository.java per writable entity as a hand-stubbed Java interface the consumer implements with their preferred persistence layer (Spring Data JPA / jOOQ / plain JDBC — all out of MetaObjects' concern). Nests the SortClause record the controller calls into. |
filter-allowlist |
SpringFilterAllowlistGenerator |
metaobjects-codegen-spring |
One <Entity>FilterAllowlist.java per writable entity: the filterable field set plus the operator set permitted per field, gated by field subtype (FR-009 §5, identical across ports). Only @filterable: true fields appear. Emitted even when no field is filterable (with empty constants), so the generated controller delegates to it unconditionally. |
value-object |
SpringValueObjectGenerator |
metaobjects-codegen-spring |
One Java 21 record per object.value reachable from an entity's value-object jsonb column (field.object @objectRef @storage: jsonb, single or @isArray), transitively through nested members. Unlike a payload record it carries jakarta bean-validation constraints plus @Valid on nested members, so a VO column POSTs and PATCHes with validation cascading to depth ≥ 2. This is what <Entity>Dto / <Entity>Patch bind to. |
names |
SpringNamesGenerator |
metaobjects-codegen-spring |
One <Entity>Names.java per object with a declared/inherited primary source.rdb — public static final physical database name constants (table/view name, schema, per-field columns). See "<Entity>Names" below. |
entity |
JavaObjectCodeGenerator |
metaobjects-codegen-base |
Flavor-selected via the flavor generator arg (com.metaobjects.generator.direct.object.javacode). flavor=pojoAware emits class <Name> extends PojoObject — a concrete MetaObjectAware class whose inherited getMetaData() back-reference breaks a default Jackson/Gson mapper (see Serializing generated objects below). flavor=valueObject emits a map-backed class <Name> extends ValueObject instead. Either flavor also emits a <Name>Extractor and a self-registering ObjectClassBindingProvider. For a plain default-Jackson-friendly type, use the codegen-spring record surface instead — never pojoAware. |
payload |
SpringPayloadGenerator |
metaobjects-codegen-spring |
One <Template>Payload Java 21 record per template.* declaration, derived from the template's @payloadRef object.value field tree. No annotations — Jackson binds by name. This is the typed payload every other template-tier generator below builds on; none of them re-declares the shape. |
output-parser |
SpringOutputParserGenerator |
metaobjects-codegen-spring |
One <Template>Parser per responding template.prompt (ADR-0052: one carrying @responseRef) — a Jackson-backed throw-only parser returning the <Template>Response record. FR-006 / ADR-0010; the Java sibling of TS's outputParser(). See FR-006 — response parsing below. |
output-prompt |
SpringOutputPromptGenerator |
metaobjects-codegen-spring |
One <Template>ResponseFormat per responding template.prompt — a static renderFormat() / renderFormat(PromptOverrides) pair emitting the output-format prompt fragment (FR-010). The reply's syntax comes from @responseFormat, never @format (which is the syntax of the rendered prompt BODY). |
render-helper |
SpringRenderHelperGenerator |
metaobjects-codegen-spring |
One <Template>RenderHelper per template.output, wrapping the JVM Renderer with a typed render(payload, provider). @kind: document renders @textRef to a String; @kind: email renders subject + html (+ optional text) into an EmailDocument. It also runs the mustache↔payload drift check at BUILD time — an unresolvable text, or one with a non-warning Verify error, fails the build rather than emitting. |
extractor |
ExtractorCodeGenerator |
metaobjects-codegen-base |
One <Name>Extractor wrapping the runtime tolerant extract, turning dirty LLM text into a fully-typed flavored object graph (nested objects + arrays-of-objects populated) in one call. It names MetaObjectExtractor (in metaobjects-om) by FQN string only, so codegen-base keeps no compile dependency on om — the reference resolves on the consumer's classpath. |
trace-helper |
LlmTraceHelperGenerator |
metaobjects-codegen-spring |
One <Entity>TraceHelper per concrete entity that transitively extends metaobjects::ai::LlmCallBase and nests a template.prompt carrying @responseRef — a static record<Entity>(...) that extracts the typed response, builds the LlmCallBase trace row, and persists it. Emits nothing for any other entity. |
template |
TemplateScopeGenerator |
metaobjects-codegen-base |
The generic Mustache primitive: walk the model by a named scope, render one shared template per walk result, write each file. The declarative alternative to writing a generator class — see Declarative template-codegen below. It renders through render.templategen.TemplateGenerator, the byte-pinned cross-port factory; that factory takes a walk callback and is not itself a Generator, so TemplateScopeGenerator is the class a pom names. |
Wire any generator via the Maven plugin's <generator> entry pointing at its class.
Every one is independently configurable; the typical starting set is
SpringControllerGenerator + SpringDtoGenerator + SpringRepositoryGenerator
(controller + DTO + repository).
One exception: extractor is not separately wirable on this port. It is emitted by
entity — JavaObjectCodeGenerator runs ExtractorCodeGenerator for every non-abstract
object it emits — so its output ships whenever entity is in your <generators>, and
there is no <generator> entry for it. The other four ports expose extractor as a
standalone generator; Java fuses it, which is why it carries a stable name here at all.
SpringNamesGenerator is opt-in, like every Java generator — there is no
default suite on the JVM; <generators> in the pom is the complete list, one
<generator> entry per generator you want:
<generator>
<classname>com.metaobjects.generator.spring.SpringNamesGenerator</classname>
<args><outputDir>${project.build.directory}/generated-sources/java</outputDir></args>
</generator>It emits one <Entity>Names.java per object with a declared or inherited
primary source.rdb:
// generated/acme/blog/AuthorNames.java (package line + import elided)
public abstract class AuthorNames {
public static final String TYPE = "object";
public static final String SUB_TYPE = "entity";
public static final String NAME = "Author";
public static final String SOURCE_PRIMARY_TYPE = "source";
public static final String SOURCE_PRIMARY_SUB_TYPE = "rdb";
public static final String SOURCE_PRIMARY_KIND = "table";
public static final String SOURCE_PRIMARY_TABLE = "authors";
public static final String NAME_FIELD = "name";
public static final String NAME_COLUMN = "name";
public static final String IDENTITY_PK_TYPE = "identity";
public static final String IDENTITY_PK_SUB_TYPE = "primary";
public static final String IDENTITY_PK_NAME = "pk";
public static final Map<String, String> COLUMNS_BY_FIELD = Map.ofEntries(
Map.entry("name", NAME_COLUMN)
);
protected AuthorNames() {}
}The class MIRRORS THE METADATA TREE. Every node carries its own TYPE,
SUB_TYPE and NAME, so AuthorNames.NAME is the OBJECT's name ("Author")
and a physical name sits under the member that says what it IS —
SOURCE_<ROLE>_TABLE / _VIEW / _MATERIALIZED_VIEW / _PROC / _FUNCTION,
from the metamodel's own @kind-to-alias map. <ROLE> is PRIMARY or
REPLICA, so a write-through entity — one table, one replica view, two physical
names — has a member for each instead of one member between them.
TYPE/SUB_TYPE are on every node but a field, and that exception is
deliberate: a field's subType does not change what its column denotes, while an
object's decides table-vs-view and an identity's decides unique-vs-not
(ADR-0040 put uniqueness in the type). An identity.secondary or index.lookup
also carries IDENTITY_<NAME>_INDEX / INDEX_<NAME>_INDEX, the database index
name; identity.primary deliberately carries none, because migrate names a
primary key by a dialect-conditional formula this artifact must not restate.
There is no READ_ONLY. It was never metadata — it is a derivation over
@kind — so ask SOURCE_<ROLE>_KIND.
It follows extends, so a constant you do not find on a class is on its
base. The class is abstract rather than final precisely so it can be
inherited (the constructor is protected for the same reason — a subclass's
implicit super() has to reach it), and an object that extends another
produces a class that extends the other's:
public abstract class CopayAuthNames extends AuthNames {
public static final String TYPE = "object";
public static final String SUB_TYPE = "entity";
public static final String NAME = "CopayAuth"; // its OWN name, not the base's
public static final String COPAY_AMOUNT_FIELD = "copayAmount";
public static final String COPAY_AMOUNT_COLUMN = "copay_cents";
// SOURCE_PRIMARY_* / ID_COLUMN / … are the base's. Java inherits static members,
// so CopayAuthNames.SOURCE_PRIMARY_TABLE and CopayAuthNames.ID_COLUMN both resolve.
}Which members a class declares is structural, and follows one rule: it declares
what the object DECLARES, and inherits the rest. A TPH subtype sharing its
base's single table declares no source of its own, so its whole
SOURCE_PRIMARY_* block comes from the base. Its TYPE/SUB_TYPE/NAME are
always restated, because they differ — CopayAuthNames.NAME has to say
"CopayAuth". An abstract base a persisted entity extends gets a class of its
own carrying the columns and keys it declares and no SOURCE_* block at all
— it has no table, and must never acquire one. COLUMNS_BY_FIELD stays complete
on every class, inherited entries included.
Prefer a typed handle where one exists. If the ORM gives you a type-checked object for the same thing, use that. Replacing it with a string constant trades an error the compiler catches for one the database raises at runtime. These constants are for the places with no typed handle: raw SQL, a migration script, a log line, an external system's column mapping.
In Java, that limit is never live advice — there is no typed handle to
prefer, anywhere. codegen-spring emits no physical name anywhere else: the
generated <Entity>Dto is a record keyed by logical field names, and the
generated <Entity>Repository is a bare interface the consumer implements
with no JPA annotations — no @Table, no @Column. This artifact exists
purely for the hand-written persistence layer the consumer supplies (Spring
Data JPA, jOOQ, plain JDBC); nothing this toolchain itself generates ever
reads it. It is the only route to a compile-checked physical name in this
port, which is also why nothing else here can catch a wrong pairing for
free — get columnNaming wrong and the constant simply names a column the
migration never created.
SpringNamesGenerator takes the same columnNaming generator arg as every
other physical-naming lever in this program, defaulting to literal (matching
ObjectManagerDB's runtime resolution — deliberately not Kotlin's snake_case
codegen default, since a Java artifact defaulting differently from the Java
runtime would itself be the drift this program exists to remove):
<args>
<outputDir>${project.build.directory}/generated-sources/java</outputDir>
<columnNaming>snake_case</columnNaming>
</args>Codegen cannot see a runtime SimpleMappingHandlerDB.setColumnNaming(...)
call — a project pairing that call with this generator must pass the same
strategy string to both, by hand (see
features/field-types.md).
The built-in set above is a starting point, not the ceiling. When you need a shape
it does not emit, the JVM port gives you both authoring paths, and which one to
reach for is a real decision — see the tradeoff table in
codegen-concepts.md §3.
Programmatic. Implement com.metaobjects.generator.Generator (or extend
GeneratorBase) in your own project and name your class in the <classname>
element. The plugin resolves it through the project classloader, so a generator
compiled in your own build is wired exactly like a built-in one — there is no
registration step and no plugin change. Reach for this when the logic is gnarly or
the run is hot.
Declarative. Write a Mustache template and wire
TemplateScopeGenerator, which needs no generator code at all. Reach for this when
the output shape is what you are iterating on, or when you want the same output
across languages — the template renders against the neutral, byte-gated data dict
every port shares, so one template emits identically here, in TypeScript, in C# and
in Python.
com.metaobjects.generator.template.TemplateScopeGenerator is wired as an ordinary
<generator> — the JVM needs no --template-spec flag because <generator> is
already the seam the CLI ports lack:
<generator>
<classname>com.metaobjects.generator.template.TemplateScopeGenerator</classname>
<args>
<templatesDir>src/main/templates</templatesDir>
<template>service/entity-service</template>
<scope>perEntity</scope>
<outputPattern>{package}/{Name}Service.java</outputPattern>
<outputDir>${project.build.directory}/generated-sources/java</outputDir>
</args>
</generator>| Arg | Required | Meaning |
|---|---|---|
template |
yes | Template ref, resolved under templatesDir (<templatesDir>/<ref>.mustache) |
scope |
yes | perEntity | perPackage | perModel — the walk, declared instead of hand-written |
outputPattern |
yes | Output path per unit. Placeholders {name}, {Name}, {package}; {package} renders its :: segments as nested directories. An unknown placeholder fails the build |
templatesDir |
yes | The project's templates root |
outputDir |
yes | Standard generator arg — where the rendered files land |
format |
no | Escaper format; defaults to text |
Abstract objects are excluded from every scope. The three walks, the data dict and
the output-pattern grammar are gated byte-identical against the shared
fixtures/template-codegen-conformance/ corpus, so a template that renders here
renders the same everywhere.
One deliberate difference from the other ports: this generator writes its output
directly, not through GeneratedFileWriter, so your template is under no
obligation to emit the @generated marker. The marker floor guards output whose
header MetaObjects controls; a user template's output is not that. The tradeoff is
that these files are overwritten on every run — keep hand edits out of them.
The data dict your template receives is documented in
codegen-data-shapes.md.
Two paths hand you a MetaObjectAware instance: the JavaObjectCodeGenerator
flavored codegen above (a pojoAware or valueObject class), and the OMDB
runtime (ObjectManagerDB.getObjects(...) / MetaObject.newInstance(), see
Use above). Serialize either through the MetaObjects JSON layer
(com.metaobjects.io.object.json) — JsonObjectWriter for the write side,
JsonObjectReader for the read side — rather than a bare Jackson/Gson mapper:
import com.metaobjects.io.object.json.JsonObjectWriter;
import com.metaobjects.io.object.json.JsonObjectReader;
import com.metaobjects.loader.MetaDataLoader;
import com.metaobjects.object.MetaObject;
import java.io.StringReader;
import java.io.StringWriter;
import java.nio.file.Path;
MetaDataLoader loader = MetaDataLoader.fromDirectory("app", Path.of("src/main/metaobjects"));
MetaObject mo = loader.getMetaObjectByName("acme::blog::Author");
// pojoAware-flavor generated class: public Author(MetaObject mo) { super(mo); }
Author author = new Author(mo);
author.setName("Ada");
StringWriter out = new StringWriter();
JsonObjectWriter.writeObject(author, out);
String json = out.toString();
// {"@type":"acme::blog::Author","name":"Ada"}
Author roundTripped = JsonObjectReader.readObject(Author.class, mo, new StringReader(json));A default Jackson/Gson mapper pointed directly at a pojoAware-flavor class
fails on the MetaObject back-reference every generated PojoObject subtype
carries (the inherited getMetaData() getter leads a bean-style mapper into
the metadata graph, and on a modular JVM into InaccessibleObjectException)
— this is expected, not a bug to work around. If you want a type that
serializes cleanly with a bare default mapper, generate the codegen-spring
record surface instead (SpringDtoGenerator / SpringPayloadGenerator /
SpringValueObjectGenerator) — never pojoAware.
Wire form (field.date / field.timestamp) — a Java rendering of the cross-port contract in normalization.md (the single source of truth):
| Field | Wire form | Example |
|---|---|---|
field.date |
calendar date of the instant at UTC — YYYY-MM-DD |
"2026-06-03" |
field.timestamp + @localTime: true |
wall clock of the instant at UTC, no Z |
"2026-06-03T14:30:00.123" |
field.timestamp (default, tz-aware) |
UTC instant, with Z |
"2026-06-03T14:30:00.123Z" |
The fraction is millisecond resolution, trailing zeros stripped, and the .
plus fraction omitted entirely when zero (.123→.123, .120→.12,
.100→.1, .000→omitted). A null value writes JSON null. Readers stay
tolerant and backward-compatible: a JSON number is still read as legacy
epoch milliseconds; a JSON string is tried in order as an ISO instant
(the Z form) → a local date-time (no Z) → a date-only form, and the error
message names all three accepted forms if none match.
A hand-constructed field.date value carrying a sub-day time component
writes as the calendar date only (truncated on first write, stable
thereafter) — this matches the shipped OMDB DATE codec, which anchors DATE
columns at midnight UTC.
The browser-side Angular 18 client (@metaobjectsdev/angular +
@metaobjectsdev/codegen-ts-angular, which live on the TypeScript side per
the universal client recipe — source-only, not
published to npm) interoperates with the
generated Spring controllers out of the box — the cross-port URL grammar and
JSON wire shape are identical. Consumers wire EntityFetcherToken to a
fetch wrapper that targets their Spring backend's apiPrefix (default
/api); no Java-specific Angular code is needed.
CORS is the only typical hookup item: a Spring dev-server on port 8080 + an
Angular dev-server on port 4200 will need @CrossOrigin on the generated
controllers (or a global WebMvcConfigurer addCorsMappings(...) registration
in the consumer's @Configuration). The generated controllers do not emit
@CrossOrigin — adding it cross-port would require a CORS-policy
configuration model that has not yet been specced.
| Feature | Status |
|---|---|
| Entities + fields | Yes |
| Relationships + FK | Yes (via OMDB) |
| Source kinds (table / view / storedProc) | Yes |
field.currency / field.enum / field.object + @storage |
Yes |
| Templates + render (FR-004) | Yes (metaobjects-render) |
| Payload-VO codegen | Yes — SpringPayloadGenerator (in metaobjects-codegen-spring) emits a Java 21 record per template, mirrors the Kotlin shape |
| Output parser codegen (FR-006) | Yes — SpringOutputParserGenerator (in metaobjects-codegen-spring) — see usage below |
| Migrations | TS-only (@metaobjectsdev/cli migrate) — the Java migration engine and the OMDB runtime auto-create path were both removed (ADR-0015); apply the TS-produced DDL to the database |
| Drift verify | Verify.check / Verify.checkOutputPrompt (prompts). Live-DB schema-drift verification is part of the TS migration toolchain |
| Runtime metadata | Full — OMDB ObjectManager |
| REST controller codegen | Spring Web MVC — metaobjects-codegen-spring (FR-008 §2.1) |
SpringOutputParserGenerator (in metaobjects-codegen-spring) emits one
<PromptShortName>Parser Java class per responding template.prompt — one declaring
@responseRef — a Jackson-backed, throw-only parser around the <Prompt>Response
record SpringPayloadGenerator emits for that ref (no shape re-declaration).
Registered in the module's generator registry as output-parser.
ADR-0052: the shape parsed INTO is @responseRef, never @payloadRef (which types the
request the prompt renders outbound), and template.output gets no parser at all. This
port's records are TEMPLATE-named, so a responding prompt gets a SECOND record —
<Prompt>Response beside <Prompt>Payload.
// generated/NpcResponseParser.java
public final class NpcResponseParser {
private static final ObjectMapper MAPPER = new ObjectMapper();
private NpcResponseParser() {}
/** @throws JsonProcessingException on malformed JSON or a schema mismatch. */
public static NpcResponsePayload parse(String text) throws JsonProcessingException {
return MAPPER.readValue(text, NpcResponsePayload.class);
}
}Consumer wiring:
String llmResponse = myLlmClient.complete(promptText);
try {
NpcResponsePayload npc = NpcResponseParser.parse(llmResponse);
return ResponseEntity.ok(npc);
} catch (JsonProcessingException e) {
return ResponseEntity.badRequest().body(Map.of("error", e.getMessage()));
}The same Verify API guards the output side: Verify.checkOutputPrompt(fragment, requiredFieldNames) checks the output-format prompt fragment names every required
field, and Verify.check(...) (with output-tag slots supplied via its
VerifyOptions) catches payload-VO ↔ parser drift at build time. Cross-port design is at
ADR-0010;
the feature reference is at
features/templates-and-payloads.md.
FR-010's tolerant extractLenient(loader, text) variant (returns an
ExtractionResult<TPayload> instead of throwing) ships alongside parse().
Per-corpus pass counts move every release — see
docs/CONFORMANCE.md for the current, authoritative
per-port numbers (metamodel, YAML, render, verify, persistence, API
contract). Java is green across all six active corpora today (Java doesn't
run the persistence corpus's migration scenarios — those are TS-only,
ADR-0015).
server/java/README.md— module-level overviewdocs/features/— every feature shows the Java output inline- Kotlin port — built on top of this Java tier with idiomatic Kotlin codegen
docs/superpowers/specs/2026-05-25-fr-004-java-template-port-design.md