Produtividade com Spring BootBom, você já deve ter desenvolvido alguma aplicação Web com Java e deve ter notado que é muito trabalhoso…
Development environment in Spring Boot with DockerOne aspect of Docker is to provide the same environment throughout the different stages of software development process: e.g. in development, staging and production. But does it really make sense to run your application inside Docker when…
Java и Spring Boot в Java мире. Часть 4. MongoDB и хранение данных.Для работы с базой нам потребуется добавить драйвера для работы с MongoDB. Но спешу вас разочаровать, вам ничего не придется придумывать. Spring уже имеет поддержку MongoDB. Просто добавьте в build.gradle новую з…
Web server with Nodejs vs Spring BootHow to create a Http server ?Nodejsvar http = require(‘http’);http.createServer(function (req, res) { res.writeHead(200, {‘Content-Type’: ‘text/plain’}); res.end(‘Hello World’);}).listen(3000);
The Netflix Stack, using Spring Boot-Part 3Netflix has always been a proud contributor to the open source world. It’s fascinating to see how each of their libraries facilitate a lot of tasks and can help create your development in a tremendous way.
Spring Boot IImagina lo siguiente:Estás en un hackathon, tienes 36 horas para construir una aplicación desde cero que contenga algo de funcionalidad para impresionar a los jueces y llevarte ese jugoso premio. ¿Qué lenguaje de programación escoges? ¿Qué framework escoges? Piensa, piensa…
Java и Spring Boot в Java мире. Часть 2. Простой REST сервис.Давайте же попрбуем сделать из нашего приложения REST сервис? В этом нам поможет Spring Boot!Заходим на http://projects.spring.io/spring-boot/Обновим на build.gradle
Database Reverse Engineering using JOOQ in Spring BootI’ve worked on a sample code that does reverse engineering from a database to its proper JOOQ models and records.The sample code is up on Github and instructions are inside the code and README.
Yet another Spring Boot Application (Part 1)Spring Boot applications seem to be gaining traction with the increase popularity of microservices. In this post, we will be covering a basic skeleton project for a Spring Boot application that simply runs with a number of default endpoints.
Java и Spring Boot в Java мире. Часть 3. Расширяем приложение.Spring Boot Включает множество пакетов для различных целей. Полный список пакетов доступен по ссылке.Для расширения нам необходимо создать новые пакеты: