java -jar sample.jar --spring.profiles.active=real https://cpdev.tistory.com/122 [springboot] jar 실행시 profile 선택 jar로 단독실행시 프로파일을 설정해줄수 있다. application-prod.properties 파일을 만들고 아래와 같이 실행 java -jar sample.jar --spring.profiles.active=prod cpdev.tistory.com
@ApiIgnore https://m.blog.naver.com/PostView.nhn?blogId=ljpark6&logNo=221049594787&proxyReferer=https:%2F%2Fwww.google.com%2F [springfox] swagger.. 사용하지 않는 controller 제외시키기 출처 : https://github.com/springfox/springfox/issues/1102 @ApiIgnore를 class위에 넣어주면 된다.^^ blog.naver.com
install plugin `Naginator Plugin` https://www.360logica.com/blog/how-to-retry-a-failed-build-in-jenkins/ How to Retry a Failed Build in Jenkins? - The Official 360logica Blog Retry builds after failure in Jenkins Open Jenkins using the URL: http://localhost:8080/ on any browser. 2. Click the ‘Manage Jenkins’ menu displayed on the right side of the screen. You will be redirected to the ‘Manage Je..
return SparkSession .builder() .appName(appName) .config("spark.sql.warehouse.dir", c3.getPath()) .config("spark.sql.crossJoin.enabled", true) .enableHiveSupport() .getOrCreate(); https://medium.com/@achilleus/https-medium-com-joins-in-apache-spark-part-2-5b038bc7455b Joins in Apache Spark — Part 2 In Part 1, we have covered some basic aspects of Spark join and some basic types of joins and how ..
String test = "test"; System.out.println(String.format("%s", test)); https://interconnection.tistory.com/116 Java String format 사용법 String format 문법 형식 %[argument_index$][flags][width]conversion 문법 설명 1) 필수값: %와 conversion 으로 무조건 있어야합니다. "conversion": 표현 할 데이터의 타입으로, s(문자열), d(정수), x(16진수.. interconnection.tistory.com
@Controller public class ExampleController { @GetMapping("/") public String test() { return "redirect:http://www.naver.com"; } } http://jmlim.github.io/spring/2019/09/30/spring-redirect-to-an-external-url/ [Spring] Spring Controller 에서 외부 URL로 redirect 하기. · 기억하기 위한 개발노트 [Spring] Spring Controller 에서 외부 URL로 redirect 하기. 30 Sep 2019 | Spring Spring boot Redirect External 외부 URL Java Spring 웹 어플리..
https://gist.github.com/seunggabi/d0fb4570b3d87334647a67c403f9ca79 [Spring] request url filter [Spring] request url filter. GitHub Gist: instantly share code, notes, and snippets. gist.github.com https://stackoverflow.com/questions/4389596/how-can-i-get-the-request-url-from-a-java-filter How can I get the request URL from a Java Filter? I am trying to write a filter that can retrieve the request..
![](http://i1.daumcdn.net/thumb/C148x148/?fname=https://blog.kakaocdn.net/dn/bRGiPf/btqDPKZO75b/GjXk7baslVIHUhQnc8Kad0/img.png)
https://store.whale.naver.com/detail/nclmnfnglpbfhdnmdpkjpnnagbkdlhai ClipHistory 당신의 소중한 복사 히스토리를 보관해드립니다. Memorize your Copy History. (Just for you) store.whale.naver.com 복사한 상태에서 다른 것 복사하는 경우... 클립보드가 날아가는 것이 불편해서 만듬 ㅎㅎ 기본적인 히스토리 저장과 링크의 경우 하이퍼링크 생성으로 새창을 띄울 수 있다. 이미지 인 경우에도 기록되도록 수정할 예정!
### Setting https://stackoverflow.com/questions/49155420/springfox-swagger-ui-html-unable-to-infer-base-url-caused-by-missing-cookies Springfox swagger-ui.html unable to infer base URL - Caused by missing cookies We have our Spring Boot services behind an API Gateway. With an earlier version of Springfox - 2.1.2 we had no issues in loading the swagger-ui.html page. This worked with Spring Boot 1..
from collections import Counter Counter('hello world') # ({'l': 3, 'o': 2, 'h': 1, 'e': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1}) Counter('hello world').most_common() # [('l', 3), ('o', 2), ('h', 1), ('e', 1), (' ', 1), ('w', 1), ('r', 1), ('d', 1)] Counter('hello world').most_common(1) # [('l', 3)] https://www.daleseo.com/python-collections-counter/ [파이썬] collections 모듈의 Counter 클래스 사용법 Engineering B..
git config credential.helper store git config credential.helper cache git config credential.helper 'cache --timeout=3600' git config credential.helper store --global https://www.hahwul.com/2018/08/git-credential-helper.html Git pull/push 시 Password 물어보지 않도록 설정하기(credential.helper) Git pull/push 시 Password 물어보지 않도록 설정하기 www.hahwul.com
UPDATE table_users SET cod_user = (case when user_role = 'student' then '622057' when user_role = 'assistant' then '2913659' when user_role = 'admin' then '6160230' end), date = '12082014' WHERE user_role in ('student', 'assistant', 'admin') AND cod_office = '17389551'; https://stackoverflow.com/questions/25674737/mysql-update-multiple-rows-with-different-values-in-one-query/25674827 MySQL - UPD..
>>> s = "foobar" >>> list(s) ['f', 'o', 'o', 'b', 'a', 'r'] https://stackoverflow.com/questions/4978787/how-to-split-a-string-into-array-of-characters How to split a string into array of characters? I've tried to look around the web for answers to splitting a string into an array of characters but I can't seem to find a simple method str.split(//) does not seem to work like Ruby does. Is ther.....
mvn -f path/to/pom.xml ... https://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException MissingProjectException - Apache Maven - Apache Software Foundation This error indicates that you tried to execute a goal which requires a POM but Maven didn't find a pom.xml file in the directory you invoked it from. In most cases, fixing this is merely a matter of changing the current directory..
java -jar example.jar java -jar example.jar & nohup java -jar example.jar & http://blog.naver.com/PostView.nhn?blogId=moonv11&logNo=221429285547&parentCategoryNo=&categoryNo=16&viewDate=&isShowPopularPosts=true&from=search Spring Boot - jar 실행 1. $ java -jar example.jar- 위와 같이 실행하면 ssh 연결이 끊어질때 프로그램도 같이 종료된다.2. $ j... blog.naver.com https://heowc.tistory.com/38 Spring Boot - jar로 Deploy(배포)하기 S..
java -version J2SE 8 = Version 52 J2SE 7 = Version 51 J2SE 6.0 = Version 50 J2SE 5.0 = Version 49 JDK 1.4 = Version 48 JDK 1.3 = Version 47 JDK 1.2 = Version 46 JDK 1.1 = Version 45 https://dwfox.tistory.com/25 [Java] Unsupported major.minor version 52.0 오류 / 해결 Java Exception : Unsupported major.minor version 52.0 에러 내용 Java Version 52.0 (JDK 8.0) 버전에서 컴파일하고 이하 버전에서 실행할때 발생 에러 Version 별 JDK 버전 ..
ex_list = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'c', 'd' ] ex_list = list(set(ex_list)) print(ex_list) # ['a', 'c', 'b', 'e', 'd', 'g', 'f'] https://bluese05.tistory.com/13 python list 값 중복 제거하기 Python 의 List 에 중복된 값이 있을 경우, 중복 제거를 하고 싶은 경우가 있다. 물론 직접 해당 기능을 구현할 수 있으나, 간단한 방법이 있다. 바로 python의 자료형 중 set 을 이용한 방법이다. 자료형 set은.. bluese05.tistory.com
SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version ** # chrome driver version == browser chrome version https://chromedriver.chromium.org/downloads Downloads - ChromeDriver - WebDriver for Chrome WebDriver for Chrome chromedriver.chromium.org chrome://version https://codechacha.com/ko/selenium-chromedriver-version-error/ selenium 버..
- Total
- Today
- Yesterday
- Kluge
- 김달
- 어떻게 능력을 보여줄 것인가?
- 모델y
- 테슬라 리퍼럴 코드 혜택
- 레퍼럴
- 팔로워 수 세기
- 클루지
- 테슬라 리퍼럴 코드
- follower
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라 크레딧 사용
- wlw
- 테슬라 추천
- 연애학개론
- 모델 Y 레퍼럴
- 개리마커스
- 책그림
- 테슬라
- 테슬라 레퍼럴 코드 확인
- 테슬라 리퍼럴 코드 생성
- 유투브
- 할인
- 테슬라 레퍼럴
- Bot
- 인스타그램
- 테슬라 레퍼럴 적용 확인
- COUNT
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |