분류 전체보기86 Kotlin으로 Spring Boot JPA 프로젝트에 Querydsl 적용하기 코드 작성 과정과 방법은 모두 https://jojoldu.tistory.com/372에서 참조하였다. build.gradle.kts build.gradle.kts에서 Querydsl을 사용하기 위한 gradle 설정을 추가한다. apply(plugin = "kotlin-kapt") apply(plugin = "kotlin-jpa") sourceSets["main"].withConvention(KotlinSourceSet::class) { kotlin.srcDir("$buildDir/generated/source/kapt/main") } dependencies { kapt("org.springframework.boot:spring-boot-configuration-processor") compile("c.. 2019. 10. 1. [Spring Boot] Actuator를 추가했는데 404 에러가 발생하는 경우 단순히 dependency만 추가하면 일부 페이지(/actuator, /actuator/health)만 노출되고 나머지에서는 404 에러가 발생한다. 이유는 endpoint가 차단된 상태이기 때문이다. 따라서 아래 설정을 application.yml에 추가해서 모든 endpoint를 노출해주면 다른 URL로도 접근할 수 있다. management: endpoints: web: exposure: include: "*" 2019. 9. 20. [Sphinx/LaTeX] fncychap package로 pdf 문서 챕터 스타일 변경 Inclusion of the “fncychap” package (which makes fancy chapter titles), default '\usepackage[Bjarne]{fncychap}' for English documentation (this option is slightly customized by Sphinx), '\usepackage[Sonny]{fncychap}' for internationalized docs (because the “Bjarne” style uses numbers spelled out in English). Other “fncychap” styles you can try are “Lenny”, “Glenn”, “Conny”, “Rejne” and “Bjornstr.. 2019. 9. 18. Kotlin Infix Notation (중위 표기법) infix vs. postfix vs. prefix infix(중위표기법) 일상생활에서의 수식 표기법으로 두 개의 피연산자 사이에 연산자가 존재하는 표현방식이다. ex. X + Y postfix 연산자를 피연산자 뒤에 표시하는 방식이다. 옛날에 계산기 과제 할 때 stack 써서 많이 바꾸던 그 방식! ex. X + Y를 postfix로 변환하면 X Y + prefix 연산자를 피연산자 앞에 표시하는 방식이다. Kotlin에서의 Infix Notaion Kotlin에서 infix 키워드를 사용하여 Infix Notation(중위표기법)으로 함수를 호출할 수 있다. 단, 아래 요건을 충족해야 한다. They must be member functions or extension functions. They m.. 2019. 9. 17. 이전 1 ··· 10 11 12 13 14 15 16 ··· 22 다음