Explore >> Select a destination


You are here

stackchief.com
| | journal.robbi.my
1.8 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...
| | juandebravo.com
3.5 parsecs away

Travel
| | Juan de Bravo - Personal thoughts about technology (@juandebravo)
| | www.e4developer.com
2.2 parsecs away

Travel
| | High level introduction to Spring Boot and its popularity. Spring Boot Hello World example and a list of features that make it so successful.
| | vanwilgenburg.wordpress.com
13.4 parsecs away

Travel
| Earlier this year I wrote an article on how to run your integration tests with an embedded elasticsearch. When upgrading to elasticsearch 7 this method didn't work (yet). An alternative (and maybe even better) method is using Testcontainers to run elasticsearch in a Docker container. I will also show how you can leverage Karate to...