일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- asp.net
- WebView
- Redirect
- html
- STS
- Bootstrap
- 웹뷰
- jsp
- 이클립스
- 컬럼명
- varags
- MS-SQL
- 자바
- Java
- C#
- MSsql
- 안드로이드
- 웹 서비스
- Eclipse
- 자바스크립트
- Web Service
- TextBox
- decompiler
- MANTIS
- SpringSource Tool Suite
- Android
- Maven
- Apache Lucene
- scrollView
- javascript
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
Centos 7 기준 (7 미만에서는 다른 방법으로 등록)/etc/systemd/system 으로 이동 [앱이름].service 파일 생성 (예. bboks.service) service 파일 내용[Unit]Description=서비스 명 [Service]User=centosWorkingDirectory=/home/centos/앱 디렉터리ExecStart=/usr/bin/java -Djsse.enableSNIExtension=false -Dspring.profiles.active=production -jar /home/centos/앱 디렉터리/앱.jarSuccessExitStatus=143TimeoutStopSec=10Restart=on-failureRestartSec=5 [Install]WantedBy..
1. 톰캣 설치 경로/lib 로 이동 예) /java/tomcat7/lib 2. 다음 명령어 입력 java -cp catalina.jar org.apache.catalina.util.ServerInfo
isAuthenticated() Returns true if the user is not anonymous isFullyAuthenticated() Returns true if the user is not an anonymous or a remember-me use [출처] Difference between isAuthenticated and isFullyAuthenticated
query SELECT schema_name, pg_size_pretty(sum(table_size)::bigint) as "disk space", (sum(table_size) / pg_database_size(current_database())) * 100 as "percent" FROM ( SELECT pg_catalog.pg_namespace.nspname as schema_name, pg_relation_size(pg_catalog.pg_class.oid) as table_size FROM pg_catalog.pg_class JOIN pg_catalog.pg_namespace ON relnamespace = pg_catalog.pg_namespace.oid ) t GROUP BY schema_n..