Class Backend
A configured, running server: the twenty lines every main used to open with, written once.
Backend.builder()
.handler(new ApiRouter(new Api()))
.run();
That reads the configuration, opens the database the deployment named, registers the generated daos, binds the port, installs a shutdown handler that drains what is in flight, and waits. Each of those was previously the developer's to write and to get wrong -- a main that returns ends the process without a word, because the host threads are detached, and a server with no signal handler loses every connection it was serving when the orchestrator stops it.
What comes from where
Anything the builder is TOLD is used as given. Anything it is not told, it
reads from Config: the port, the worker count, TLS, static files and
the database, in that layered order of system property, environment variable,
profile file, base file. The rule is worth stating once because the opposite
rule is also defensible: a value in the source wins over a value in the
environment, so a port written here is the port, and a port that should follow
the deployment is one nobody writes here.
The database is opened when there is one to open: a URL is configured, a pool was handed in, or the build generated at least one entity and the ORM therefore needs one. A server with no database opens none, which is what makes this the same entry point for both kinds.
# a laptop
CN1_PROFILE=dev ./server
# production
DATABASE_URL=postgres://app:secret@db.internal/app PORT=8080 ./server
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classCollects what a server needs and starts one.static interfaceWhere the handlers are built, once the things they need exist.static interfaceWhere a server's websocket endpoints come from. -
Method Summary
Modifier and TypeMethodDescriptionvoidBlocks until the server stops.static Backend.Builderbuilder()A builder whose defaults come from the configuration this process sees.static Backend.BuilderA builder over a configuration the caller already loaded or built.The configuration this server resolved its settings from.The connection pool, or null when this server has no database.The entity manager, or null when this build generated no entities.The running server, for its metrics or to stop it.static DataSourcerequireDataSource(DataSource dataSource, String handler) The pool, or a refusal naming the handler that asked for one.static EntityManagerrequireEntities(EntityManager entities, String handler) The entity manager, or a refusal naming the handler that asked for one.voidstop()Stops accepting, lets what is in flight finish, and closes the database.
-
Method Details
-
builder
A builder whose defaults come from the configuration this process sees. -
builder
A builder over a configuration the caller already loaded or built. -
getServer
The running server, for its metrics or to stop it. -
getDataSource
The connection pool, or null when this server has no database. -
getEntityManager
The entity manager, or null when this build generated no entities. -
getConfig
The configuration this server resolved its settings from. -
awaitTermination
public void awaitTermination()Blocks until the server stops. -
stop
public void stop()Stops accepting, lets what is in flight finish, and closes the database.
The order matters and is the reason this exists rather than two calls: closing the pool first would fail the requests that were still being served with it.
-
requireDataSource
public static DataSource requireDataSource(DataSource dataSource, String handler) throws IOException The pool, or a refusal naming the handler that asked for one.
Called from generated wiring: a controller declaring a
DataSourceconstructor is declaring a DEPENDENCY, and handing it null because nothing configured a database turns that into a server that starts, reports healthy and fails on the first request that touches the database. The deployment is missing a setting, and start-up is where that is cheap to see.- Throws:
IOException
-
requireEntities
public static EntityManager requireEntities(EntityManager entities, String handler) throws IOException The entity manager, or a refusal naming the handler that asked for one.- Throws:
IOException
-