본문 바로가기
728x90
반응형

분류 전체보기59

visual studio code - snippet 설정하기 설정 File > Preferences > User Snippets New Snippet file for '프로젝트명' : 프로젝트내 snippet New Global snippet file : 모든 프로젝트에 적용 json 파일 예시 { "@ApiImplicit path": { "scope": "java", // 작동되는 프로그래밍 언어 "prefix": "@ApiImplicit path", // "body": [ "@ApiImplicitParams({@ApiImplicitParam(name = \"${1}\", value = \"${2}\", required = true, paramType = \"path\")})", "$2" ], "description": "change path de.. 2021. 3. 31.
infinite table - 양방향 무한 스크롤 테이블(vue) 사용예제 코드 components/common/InfiniteTable.vue {{ item.text }} 시간 내 조회 결과가 존재하지 않습니다. 이어하기 {{ prop["filter"](item[prop.value]) }} {{ item[prop.value] }} 조회 결과가 존재하지 않습니다. 시간 내 조회 결과가 존재하지 않습니다. 이어하기 InfiniteTable.vue 사용하기 2021. 3. 31.
jpa Converter를 이용한 암복호화 1. converter/ model 설정 1. EncryptConverter.java .... import org.springframework.util.StringUtils; import javax.persistence.AttributeConverter; public abstract class EncryptConverter implements AttributeConverter { private final String encryptKey; // 암호화 컬럼 private final boolean oneWayEncrypt; // 단방향 암호화 여부 public EncryptConverter(String encryptKey) { this(encryptKey, false); } public EncryptConv.. 2021. 3. 30.
spring fox 적용하기(springboot) - 자동문서화 Spring fox란? - spring과 연동하는 자동 문서화 라이브러리 1. Springfox 관련 설정 1. gradle 설정 repositories { … maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/' } } dependencies { implementation "io.springfox:springfox-boot-starter:3.0.0" implementation "io.springfox:springfox-swagger-ui:3.0.0" ... } 2. Config 파일 @Configuration public class SpringFoxConfig { @Bean public Docket api() { return new Do.. 2020. 12. 17.
728x90