| gitflow | git |
|---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.keuss.bean; | |
| public class AppContext { | |
| /** | |
| * The unique transaction id per http request | |
| */ | |
| private String transactionId = null; | |
| private String userId = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package de.idealo.ecommerce.order.history.config; | |
| import java.util.Arrays; | |
| import java.util.stream.StreamSupport; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.springframework.context.event.ContextRefreshedEvent; | |
| import org.springframework.context.event.EventListener; | |
| import org.springframework.core.env.AbstractEnvironment; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.testpdf; | |
| import com.lowagie.text.DocumentException; | |
| import org.junit.Assert; | |
| import org.junit.Test; | |
| import org.xhtmlrenderer.pdf.ITextRenderer; | |
| import java.io.File; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; |