- Today
- Total
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- vc++
- springboot 재가동
- c언어
- Back 키 클릭 감지
- springboot
- MariaDB
- reactnative
- Activity 전체화면
- 스크롤적용
- MFC
- mybatis exception
- 파티션 빠른 삭제
- ffmpeg
- sql exception
- 피쉬랜드
- 시간대별 통계
- rn
- CSS
- 시간대 테이블생성
- MySQL
- 터치좌표 view
- view 획득
- 가변영역 스크롤
- CentOS
- 검색 콤보박스
- group by
- SQL
- pid 찾아 kill
- 코드로 서버 재실행
- 말줌임 CSS
개발은 하는건가..
아래 그림과 같이 태그에 bootstrap-select 라이브러리를 이용한 콤보박스에서 검색 기능을 적용하는 방법 JQuery v1.9.1 이상을 필요로 하며 아래 css 와 js 추가한다. link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.14/dist/css/bootstrap-select.min.css"> script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.14/dist/js/bootstrap-select.min.js">script>그리고 아래와 같이 select 태그에 'selectpicker' 클래스를 추가하면 된다. - 지역사업소 -..
dumpbin.exe 툴 명령으로 export 정보를 얻은 후 lib.exe 툴 명령으로 lib 파일을 생성 할 수 있다.툴 파일들은 visual studio 가 설치된 다음 경로에 존재한다.C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64아래와 같이 명령 실행 시 export 된 파일 정보를 볼 수 있다.> dumpbin /exports "MCP2210DLL-UMx64.dll" Microsoft (R) COFF/PE Dumper Version 14.16.27054.0 Copyright (C) Microsoft Corporation. All rights reserved..
http 로 접속 시 https 로 리다이렉트 시키기 위해 다음과 같이 webConfig 클래스를 추가 하고 bean 을 등록한다.@Configurationpublic class WebConfig { @Bean public TomcatServletWebServerFactory servletContainer() { TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory() { @Override protected void postProcessContext(Context context) { SecurityConstraint securityC..