Simple Spring-boot Swagger Documentation
Learning Swagger documentation for rest.
To Add Swagger to your application
add the depedencies
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.7.0</version> <scope>compile</scope> </dependency>
create SwaggerConfiguration class
@EnableSwagger2 @Configuration public class SwaggerConfig { @Bean public Docket productAPI(){ return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.basePackage(“com.putracode”)) .paths(PathSelectors.regex(“/api.*”)) .build() .apiInfo(metaInfo()); […]
When i learn about java 8, I have thinking about how to use Java Date and Time in POJOs. i have tried using converters,but i’d don’t satisfied using it. Timeline in twitter gave me information, Hibernate ORM 5.0.0 release. I Reading the spesification And…
Well, ok.. not all of Java 8. […]
First Thanks to Mr. Wayan Saryada for advice to Change Symbol of Currency Format.
In this code snippet you will learn how to change Currency Symbol Locale by DecimalFormat. First Of All we need create an instance of object Locale (we use US Locale). Then make e object DecimalFormat using […]
Hii… This Code will show us how to format Java LocalDate. DateTimeFormatter will help to convert LocalDate to String.
import java.time.LocalDate; import java.time.format.DateTimeFormatter; import java.util.Arrays; import java.util.Locale; public class LocalDateFormatterMain { public static void main(String[] args) { //get date today LocalDate _now=LocalDate.now(); // DateTimeFormatter.ofPattern(PATTTERN_DATE, LOCALE ) […]
Java Util Date is Past, Now is a new Era, Java Time is a Future, my teacher say like that
Java 8 come with the new Api for Date. LocalDate is an immutable date-time object that represents a date, often viewed as year-month-day. Other date fields, such as day-of-year, day-of-week and week-of-year, can also be […]
In this code snippet example you will learn how implement the Interface with Syntax java Lambdas, Old Way and New Ways in Java8 Lambdas.
Let’s see the code snippet below as an example:
package com.putracode._01_helloworld; public class HelloWorld_Lambdas { public static void main(String[] args) { // Old ways, Implementatios The Interface IHelloWorld IHelloWorld oldWays=new IHelloWorld() […]