일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- Admob
- DB
- Java
- 앱
- string
- 로또
- springboot
- YAML
- sqlite
- Native
- mysql
- Android
- sts
- sql
- 배포
- react
- 폰트
- Navigation
- EAS
- 안드로이드
- spring
- 시큐리티
- 스프링
- sdk
- 자바스크립트
- 이클립스
- expo
- thymeleaf
- 시놀로지
- yml
- Today
- Total
목록옛날 창고 (125)
Dev JS Blog
2021/02/01 - [IT/스프링] - Spring boot starter 로 Thymeleaf 사용하기 Spring boot starter 로 Thymeleaf 사용하기 일단 난 처음에 이거 어케 읽어야할지도 난감했다..😅 읽는법은 타임리프로 읽으면 된다. 기존 자주 사용해왔던 JSP 는 Spring Boot에서는 권장하지 않고 Thymeleaf 사용을 권장한다. 이유는 JSP 보다는 allmana.tistory.com 2021/02/01 - [IT/스프링] - Spring boot application.properties 를 가독성있게 바꿔보자 Spring boot application.properties 를 가독성있게 바꿔보자 Spring Boot 에 application.properties 은..
Spring Boot 에 application.properties 은 다르게도 쓸수있다. https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#mapping-yaml-to-properties Spring Boot Features Graceful shutdown is supported with all four embedded web servers (Jetty, Reactor Netty, Tomcat, and Undertow) and with both reactive and Servlet-based web applications. It occurs as part of closing the applicat..
일단 난 처음에 이거 어케 읽어야할지도 난감했다..😅 읽는법은 타임리프로 읽으면 된다. 기존 자주 사용해왔던 JSP 는 Spring Boot에서는 권장하지 않고 Thymeleaf 사용을 권장한다. 이유는 JSP 보다는 Thymeleaf가 Spring boot 에 적합한가보다 깊은 내용은 나도 모른다. 나는 야매 개발자니까 자 Spring boot starter 는 정말 정말 편하다~ 혹시 .. Spring boot Stater 로 프로젝트를 안만들었다면.. 참고 2021/02/01 - [IT/스프링] - eclipse STS 로 Spring Boot 프로젝트 시작하기 eclipse STS 로 Spring Boot 프로젝트 시작하기 https://spring.io/tools Spring Tools 4 is..
https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io STS 는 위에 사이트에서 eclipse 버전으로 다운받으면 됩니다. 예전 처음 Spring 배웠을때는 starter 가 있었는지 모르겠지만 요즘엔 Starter 가 있어서 기본 설정들이 쉬운거 같다. Starte..
개발자라면 폰트에도 좀 신경을 써야한다. 나도 그렇게 새로운 툴같은거 크게 신경을 잘 안쓰기는 하지만.. 심각한 사람들은 그냥 메모장 만 이용하는 사람도 있다.. 텍스트 에디터 툴을 사용하면 정말 편한일도 많고.. 툴에서 지원하는 플러그인 등등... 그런사소한 차이가 쌓이고 쌓여서 야근을 덜할수 있게(?) ㅋㅋㅋ도 해주는건데.. 내가 첫 개발할때는 그냥 기본적인 consoles 를 썼는데 사수 분이 이 폰트를 추천해줬고지금까지도 계속 쓰고있는 폰트이다. 이 폰트의 가장 큰 장점 한가지만 설명하고 끝내겠다. 순서대로 영어 L(엘),i(아이), 숫자 1, 그리고 | 파이프 라인이다. 심한 폰트는 모두가 비슷하지만 이 bitstream 은 모든게 구분되어진다. 지금 이 글을 쓰는 이 폰트도 엘과 아이, 파이프..
https://github.com/ GitHub: Where the world builds software GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com 시작하기전에 Github 아이디는 당연히 필수로 만들어야겠죠~~?! GitHub 에서 Repository를 먼저 생성해주어야 합니다. GitHub에 처음 로그인을 하게 되면 보게될 화면입니다. Create repository나..
MySQL 특정 문자열로 자르기 SELECT 'A>B>C' AS depth FROM DUAL A>B>C 라는 depth 컬럼이 있다. 구분자 '>' 를 기준으로 문자열을 자르고 싶다면 substring_index 를 이용한다. substring_index(컬럼,구분자,구분자 인덱스) SELECT substring_index('A>B>C','>',1) AS DEPTH FROM DUAL 결과) A SELECT substring_index('A>B>C','>',2) AS DEPTH FROM DUAL 결과) A>B 두번째 구분자 까지 결과값이 나온다. 그럼 B 만 나오게 하려면 어떻게 짤라야할까..? B 다음과 그 전(-1)을 짜르면 된다. SELECT substring_index(substring_index(..
보통 String 값을 int 값으로 변환한다면 Integer.parseInt 를 이용하면 된다. String str = "2"; int intStr = Integer.parseInt(str); 이건 가끔 자주 이용하니 괜찮은데.. 급 int는 String 어케 바꾸지...? 갑자기 생각안날때가 있다. (내가 오늘 그랬다.) int 형에서 string 형으로 변환하는건 Integer.toString() 을 이용해주면 된다. int num = 2; String str = Integer.toString(num); 해주면 int형에서 String 형으로 형변환 할 수 있다.