<dependency>
	<groupId>javax.servlet.jsp</groupId>
	<artifactId>jsp-api</artifactId>
	<scope>provided</scope>
	<version>2.1</version>
</dependency>

'java, jsp, spring, egov' 카테고리의 다른 글

war 자동 deploy  (0) 2019.11.08
톰캣에서 파일명 캐릭터셋이 안맞을 경우  (0) 2019.10.11
javac 사용법  (0) 2018.07.17
hudson 자동배포 구성  (0) 2017.10.20
spring 3.x 데이터베이스 연동  (0) 2016.04.15
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
 javac -cp /data/WEB-INF/classes/ test.java
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
videojs('video', {}, function() {
	this.on('loadedmetadata', function() {
 		var pos = 0;
 		if (pos) {
 			player.currentTime(pos);
 		}
 	});
});
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

1. database level 에서 innodb_file_format=BARRACUDA

2. table level 에서 ROW_FORMAT=DYNAMIC 또는 ROW_FORMAT=COMPRESSED 사용

다음과 같이 사용하면 정상적으로 테이블을 생성할 수 있습니다.

set global innodb_large_prefix = ON;
set global innodb_file_format = BARRACUDA;
CREATE TABLE test (
	id INTEGER NOT NULL AUTO_INCREMENT,
	name VARCHAR(255) NOT NULL,
	PRIMARY KEY (id),
	INDEX idx_test_name (name)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;

'database, query' 카테고리의 다른 글

oracle 계정 생성 및 권한 부여  (0) 2016.04.06
mssql 로그파일 크기 줄이는 법  (0) 2016.04.05
mysql - 1년전 게시물 가져오는 query  (0) 2016.03.24
pdo_mysql 연동  (0) 2015.12.17
MySQL IP 접속 권한  (0) 2015.06.22
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
function compareDaySegments(a, b) {
	return (b.rightCol - b.leftCol) - (a.rightCol - a.leftCol) || // put wider events first
		b.event.allDay - a.event.allDay || // if tie, put all-day events first (booleans cast to 0/1)
		a.event.time- b.event.time || // if a tie, sort by event start date
		(a.event.clCode || '').localeCompare(b.event.clCode) // if a tie, sort by event title
}
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
sync && echo 3 > /proc/sys/vm/drop_caches

'linux, windows' 카테고리의 다른 글

nfs(Network File System) 명령어  (0) 2019.11.07
윈도우 스케쥴러 설정  (0) 2017.10.25
svn 체크아웃  (0) 2017.10.11
CentOS에서 무료 SSL 인증서 설치  (0) 2017.02.20
CentOS - CPU 점유율이 80% 이상일때  (0) 2015.06.19
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,