I have two grails servers:
- Server - has read / write access to the database
- Web - has read-only access to the database, and for each entry it sends a request to the server
Problem: How to make web domain objects accessible only for one place (configuration file) for the entire application launch, instead of writing caching: read-only for each domain class mapping.
Azder source
share