Package com.invirgance.convirgance.web.consumer


package com.invirgance.convirgance.web.consumer
This package provides interfaces and implementations for persisting JSON data to various storage backends. Components in this package handle the "write" side of data processing workflows, typically receiving processed data and saving it to a destination.

Key components:

  • Consumer - Core interface for components that process JSON data and persist it to some destination
  • QueryConsumer - SQL database implementation that executes parameterized queries with optional sequence ID generation

Typical usage scenarios:

  • Persisting web service data to databases
  • Writing processed JSON to external systems
  • Recording data with auto-generated IDs

These components are typically configured in Spring XML and used within Service implementations.

Author:
jbanes
  • Class
    Description
    Interface for components that persist JSON data to storage backends.
    Persists JSON data to a database using SQL.