. Spring Boot build & run
$>gradle bootRun
D:\[project]\>gradlew bootRun
'gradle' 카테고리의 다른 글
Spring Boot build & run (0) | 2022.04.25 |
---|
. Spring Boot build & run
$>gradle bootRun
D:\[project]\>gradlew bootRun
Spring Boot build & run (0) | 2022.04.25 |
---|
: | Colon | 콜론 |
; | Semicolon | 세미콜론 |
/ | Slash | 슬래시 |
\ | Back Slash | 백슬래시 |
@ | At Sigh | 엣 사인 or 엣 |
& | Ampersand | 앤퍼센드 |
' | Aposterophe | 어퍼스트로피 |
` | Grave | 그레이브 |
- | Hyphen | 하이픈 |
< | Left Angle Braket | 레프트 앵글 브라킷 |
> | Right Angle Braket | 라이트 앵글 브라킷 |
{ | Left Brace | 레프트 브레이스 |
} | Right Brace | 라이트 브레이스 |
[ | Left Braket | 레프트 브라킷 |
] | Right Braket | 라이트 브라킷 |
| | Vertical Bar, Pipe | 버티컬 바, 파이프 |
* | Asterisk | 아스테리스크 |
" | Quotation Mark | 쿼테이션 마크 |
! | Exclamation Point | 익스클레메이션 포인트 |
# | Crosshatch | 크로스해치 |
. | Period or Dot | 피리어드 또는 닷 |
~ | Tilde | 틸드 |
^ | Caret, Circumflex | 캐럿, 써쿰플렉스 |
% | Percent Sign | 퍼센트 사인 |
$ | Dollar Sign | 달러 사인 |
= | Equal Sign | 이퀄 사인 |
Windows 11 디펜더 진입 안되는 현상(윈도우 11 디펜더/보안 먹통) (0) | 2022.05.03 |
---|---|
윈도우 환경변수 바로 적용 (0) | 2022.04.02 |
DPI Calculator / PPI Calculator (0) | 2016.12.06 |
마우스 오른쪽 팝업창에 CMD 명령어 연결 (0) | 2016.09.21 |
Spring-boot / Spring Cloud Config 구성하는 경ㅜ
- yml profile 설정시에 No such label Error
- NoSuchLabelException
org.springframework.cloud.config.server.environment.NoSuchLabelException: No such label: main
github에서 default branch를 master가 아닌 main으로 변경되었다.
그러나 여전히 master branch를 설정으로 인식하는 경우에 발생하는 에러이다.
Sol)
repository의 default branch 설정 값으로 변경
.yml or .properties 파일
spring.cloud.config.server.git.default-label=master #or main
Kafka on windows (0) | 2022.04.25 |
---|---|
[no main manifest attribute] 오류 (0) | 2022.04.07 |
spring-boot-maven-plugin not found 해결 방법 (0) | 2022.04.04 |
Spring RCE Patch (0) | 2022.04.04 |
“Dynamic Web Module 3.1 requires Java 1.7 or newer” 오류 해결 (0) | 2015.11.23 |
https://hyesun03.github.io/2019/09/08/marshalling-vs-serialization/
https://newseoul.tistory.com/144
https://donghyeon.dev/2020/11/07/%EC%A7%81%EB%A0%AC%ED%99%94%EC%99%80-%EB%A7%88%EC%83%AC%EB%A7%81/
https://velog.io/@agugu95/Marshalling%EA%B3%BC-Serialization%EC%9D%98-%EC%B0%A8%EC%9D%B4
JsonInclude 속성 (0) | 2022.04.08 |
---|---|
이전 자바 버전 다운로드 (JDK 1.6, JDK 1.7, JDK 1.8 etc...) (0) | 2019.07.29 |
@JsonInclude(JsonInclude.Include.NON_NULL) 을 추가해 주면 null인 데이터는 json결과에 포함되지 않게 됩니다.
(*설정 가능한 값 종류)
- NON_NULL
- ALWAYS (default)
- NON_ABSENT
- NON_EMPTY
- NON_DEFAULT
- CUSTOM
- USE_DEFAULTS
Ref.
[https://alwayspr.tistory.com/31]
직열화(Serialization), 마샬링(Marshalling) (0) | 2022.04.10 |
---|---|
이전 자바 버전 다운로드 (JDK 1.6, JDK 1.7, JDK 1.8 etc...) (0) | 2019.07.29 |