Explore >> Select a destination


You are here

callistaenterprise.se
| | www.bytefish.de
0.9 parsecs away

Travel
| | This article shows how to provide Multitenancy with Spring Boot using Row Level Security.
| | journal.robbi.my
3.9 parsecs away

Travel
| | We start with postgreSQL because this our primary database connection and we do all CRUD stuff from here. We need 2 class, which use for connection and configuration of datasource. DatasourceConfigurationPostgreSQL package com.robbi.demo.config.postgresql; import javax.sql.DataSource; import org.slf4j.Logger; import org.springframework.boot.autoconfigure.jdbc.DataSourceProperties; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; import com.robbi.demo.utils.LoggerFactoryUtil; @Configuration public class DatasourceConfigurationPostgreSQL { private static final Logger L...
| | ankane.org
3.0 parsecs away

Travel
| | Setting up database users for an app can be challenging if you don't do it often. Good permissions add a layer of security and can minimize the...
| | robkendal.co.uk
20.0 parsecs away

Travel
| There are lots of articles on how to build a Node API server but they're either quite duff or very complex. None of them seem to deal with reading and writing to JSON files. Well let's change that by building our own Node API server using JSON data storage!