Skip to content

Instances without a SQLAlchemy model

Thomas Pollet edited this page Mar 8, 2026 · 5 revisions

Stateless Endpoints / JABase

When to use this

Use these patterns when you want a SAFRS-style endpoint without a normal SQLAlchemy model behind it.

Two common paths

  • stateless SAFRSBase-style objects
  • JABase

JABase

JABase is useful for service-style endpoints and RPC-heavy use cases.

Example:

Caveat

These patterns are more advanced than the standard SQLAlchemy model workflow. Use the regular SAFRSBase + SQLAlchemy path unless you specifically need stateless behavior.

Clone this wiki locally