검색결과 리스트
전체에 해당되는 글 1012건
- 2014.03.21 [Tomcat] 구동중인 톰캣 버전 확인 하는 방법
- 2014.03.19 [IntelliJ IDEA] Tomcat JRE 변경하기
- 2014.03.18 [ehcache] EHCache를 이용한 캐시 구현
- 2014.03.18 [IntelliJ IDEA] idea.vmoptions 메모리 설정
- 2014.02.25 [Hibernate] Hibernate - Performance Tuning
- 2014.02.22 [Hibernate] Ehcache, @Cache
- 2014.02.19 [Tomcat] Apache + Tomcat 로드 밸런싱
- 2014.02.08 [.Net] FolderbrowserDialog Custom Action
- 2014.01.29 [Mac] SideEffects
- 2014.01.28 [NodeJs] Ryan Dahl의 Node.js 소개
- 2014.01.26 [JavaScript] 자바스크립트 수행단계 (파싱, 실행)
- 2014.01.24 [JavaScript] jsfiddle
- 2014.01.22 [JavaScript] 클로져(Closures)
- 2014.01.22 [MongoDB] Install MongoDB on OS X
- 2014.01.22 [Mac] Change the Shell in Mac OS X Terminal
- 2014.01.22 [Spring] SpringFramework 3.2.6.RELEASE format-configuring-formatting-mvc
- 2014.01.21 [Spring] Creating RESTful services, HiddenHttpMethodFilter
- 2014.01.21 [REST] REST API 설계
- 2014.01.21 [IntelliJ IDEA] IntelliJ Heap Size
- 2014.01.21 [Spring] Validation
- 2014.01.19 노땅 개발자가 가야할길
- 2014.01.19 [Jackson] Jackson documentation
- 2014.01.15 [Git] git command를 편하게 변경하기
- 2014.01.15 [Node.js] Node-webkit 링크
- 2014.01.13 [Git] Learn Git Branching
- 2014.01.13 [Node.js] Render ejs with express
- 2014.01.13 [Node.js] Express - API 가이드 문서
- 2014.01.10 [Node.js] IntelliJ에서 Node 사용시 [ReferenceError: Process is not defined] 발생시 대처
- 2014.01.10 [Things] Things for Mac - 각 메뉴 구분법
- 2014.01.10 [Node.js] Node download
글
트위터 팔로잉 하는 @beyondj2ee님의 글을 인용
톰캣홈/lib로 이동해서 아래 명령어 실행
java -cp catalina.jar org.apache.catalina.util.ServerInfo
#결과
Server version: Apache Tomcat/7.0.52
Server built: Feb 13 2014 10:24:25
Server number: 7.0.52.0
OS Name: Mac OS X
OS Version: 10.9.2
Architecture: x86_64
JVM Version: 1.8.0-b132
JVM Vendor: Oracle Corporation
'WAS > Tomcat' 카테고리의 다른 글
[Tomcat] The Tomcat JDBC Connection Pool (0) | 2014.06.18 |
---|---|
[Tomcat] Apache + Tomcat 연동 (0) | 2014.06.05 |
[Tomcat] Apache + Tomcat 로드 밸런싱 (0) | 2014.02.19 |
[Tomcat] VM Option UTF-8 설정 (0) | 2014.01.01 |
[Tomcat] Ipv4 사용하기 (0) | 2013.12.25 |
트랙백
댓글
글
대부분 프로젝트는 개발환경과 배포 환경의 JRE를 맞춰서 개발합니다.
그런데 공통부분을 개발하거나 프레임워크 작업을 하게 되면은 아무래도 여러 JRE 버전을 테스트 하고 싶을때가 있습니다.
또한 프로젝트 컴파일 환경과 배포환경을 다르게 할때도 발생합니다.
Eclipse에서는 각 Tomcat별로 JRE를 다르게 해서 잘 사용했었는데 IntelliJ IDEA13에서는 한참 찾아헤맸습니다.
(* 맥 기준으로 작성되었습니다.)
Run/Debug Configurations을 선택합니다.
1. Use alternative JRE를 체크합니다.
2. DropBox에서 필요한 JRE를 선택합니다.
(* 저는 1.6.0, 1.7.0_45, 1.8.0 3개가 설치되어 있네요)
3. Apply 클릭
4. OK 클릭
'IDE/Tool > IntelliJ IDEA' 카테고리의 다른 글
[IntelliJ IDEA] Getting Started with IntelliJ IDEA as an Eclipse User (0) | 2014.04.16 |
---|---|
[IntelliJ IDEA] scroll from source shurt cut (0) | 2014.04.11 |
[IntelliJ IDEA] idea.vmoptions 메모리 설정 (0) | 2014.03.18 |
[IntelliJ IDEA] IntelliJ Heap Size (0) | 2014.01.21 |
[IntelliJ IDEA] intelliJ IDEA12 JRE 1.6 -> 1.7 변경 방법 (0) | 2013.11.26 |
트랙백
댓글
글
링크: http://javacan.tistory.com/123
링크: http://sonegy.wordpress.com/2011/12/29/spring-3-1%EA%B3%BC-ehcache/
'Java > ehcache' 카테고리의 다른 글
[ehcache] Using Hibernate and BigMemory Go (0) | 2014.12.08 |
---|---|
[ehcache] Springframework에 Ehcache 적용하기 (0) | 2014.06.01 |
트랙백
댓글
글
맥과 윈도우의 idea.vmoptions 위치가 다릅니다.
* 윈도우
32 bit : “설치경로/bin/idea.exe.vmoptions”
64 bit : “설치경로/bin/idea64.exe.vmoptions”
* 맥
"~/Library/Preferences/IntelliJIdea13/idea.vmoptions" 를 수정해 주면 됩니다.
제가 사용하는 옵션
-Xms1024m
-Xmx1024m
-XX:MaxPermSize=256m
-XX:ReservedCodeCacheSize=96m
-XX:+UseCompressedOops
'IDE/Tool > IntelliJ IDEA' 카테고리의 다른 글
[IntelliJ IDEA] scroll from source shurt cut (0) | 2014.04.11 |
---|---|
[IntelliJ IDEA] Tomcat JRE 변경하기 (0) | 2014.03.19 |
[IntelliJ IDEA] IntelliJ Heap Size (0) | 2014.01.21 |
[IntelliJ IDEA] intelliJ IDEA12 JRE 1.6 -> 1.7 변경 방법 (0) | 2013.11.26 |
[IntelliJ IDEA] Live Templates (0) | 2013.11.05 |
트랙백
댓글
글
'Java > Hibernate / JPA' 카테고리의 다른 글
[Hibernate] StandardBasicType (4.3.5.Final) (0) | 2014.04.22 |
---|---|
[Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 |
[Hibernate] Ehcache, @Cache (0) | 2014.02.22 |
[Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 |
[Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 |
트랙백
댓글
글
링크: http://ehcache.org/documentation/integrations/hibernate
링크: https://docs.jboss.org/hibernate/core/4.3/devguide/en-US/html/ch06.html
'Java > Hibernate / JPA' 카테고리의 다른 글
[Hiberante] Hibernate Documention (4.3.5.Final) (0) | 2014.04.08 |
---|---|
[Hibernate] Hibernate - Performance Tuning (0) | 2014.02.25 |
[Hibernate] Hibernate 4.3.0 Final Documentation (0) | 2013.12.28 |
[Hibernate] Hibernate.4.2.8.Final Documentation (0) | 2013.12.17 |
[Hibernate] Hibernate Annotations (0) | 2013.12.13 |
트랙백
댓글
글
'WAS > Tomcat' 카테고리의 다른 글
[Tomcat] Apache + Tomcat 연동 (0) | 2014.06.05 |
---|---|
[Tomcat] 구동중인 톰캣 버전 확인 하는 방법 (0) | 2014.03.21 |
[Tomcat] VM Option UTF-8 설정 (0) | 2014.01.01 |
[Tomcat] Ipv4 사용하기 (0) | 2013.12.25 |
[Tomcat] Tomcat 튜닝 (0) | 2013.09.06 |
트랙백
댓글
글
링크 : http://www.harriyott.com/2006/12/folderbrowsedialog-in-installer-custom
결국 요는 FolderbrowserDialog는 STA에서 동작하는데 Visual Studio 2010 Installer Project로 생성한
인스톨러는 MTA에서 동작한다.
해결 방법은 위 링크같이 버튼클릭 이벤트시 스레드를 STA로 변경하면 된다.
난 Form 화면에서 컴포넌트를 드레그 해서 사용하는 방법을 선호하기 때문에(이게 코딩이 적다.)
위 방법은 불편해서 Form 자체를 STA로 실행시켰다.
'.Net > WinForm' 카테고리의 다른 글
[WinForm] OpenFileDialog (0) | 2013.03.13 |
---|---|
[WinForm] 서브클래스에서 OnPaint가 안될때... (0) | 2013.02.22 |
트랙백
댓글
글
맥 Finder의 아이콘을 컬러로 보여줌
'OS > Mac' 카테고리의 다른 글
[Mac] 심볼릭 링크 만들기 삭제하기 복사하기 (0) | 2014.03.27 |
---|---|
[Mac] 터미널로 SSH 접속 (0) | 2014.03.27 |
[Mac] Change the Shell in Mac OS X Terminal (0) | 2014.01.22 |
[Mac] 산돌 고딕 사용하기 (0) | 2014.01.08 |
[Mac] Ofiice for Mac Clean Uninstall (2011 Mac 용 Office를 완전히 제거 하는 방법) (0) | 2014.01.08 |
트랙백
댓글
글
'JavaScript > NodeJS' 카테고리의 다른 글
[NodeJS] 최신 NPM으로 업그레이드 하기 (0) | 2015.07.12 |
---|---|
[NodeJS] Node js 기본 사용법 (0) | 2015.05.09 |
[Node.js] Node-webkit 링크 (0) | 2014.01.15 |
[Node.js] Render ejs with express (0) | 2014.01.13 |
[Node.js] Express - API 가이드 문서 (0) | 2014.01.13 |
트랙백
댓글
글
'JavaScript > JavaScript' 카테고리의 다른 글
[JavaScript] JavaScript Closure & scope (0) | 2014.04.04 |
---|---|
[JavaScript] 메소드 후킹 구현하기 (0) | 2014.03.31 |
[JavaScript] jsfiddle (0) | 2014.01.24 |
[JavaScript] 클로져(Closures) (0) | 2014.01.22 |
[JavaScript] use strict (0) | 2013.12.25 |
트랙백
댓글
글
자바스크립트를 테스트 할수 있는 환경
'JavaScript > JavaScript' 카테고리의 다른 글
[JavaScript] 메소드 후킹 구현하기 (0) | 2014.03.31 |
---|---|
[JavaScript] 자바스크립트 수행단계 (파싱, 실행) (0) | 2014.01.26 |
[JavaScript] 클로져(Closures) (0) | 2014.01.22 |
[JavaScript] use strict (0) | 2013.12.25 |
[JavaScript] 정규 표현식을 시각화 해주는 도구 (0) | 2013.12.25 |
트랙백
댓글
글
링크: https://docs.google.com/presentation/d/1YYv8eYoPpY694xAFvdTY3htoCGaMJlzfCYFthAIQe3U/edit#slide=id.p
링크: https://developer.mozilla.org/ko/docs/JavaScript/Guide/Closures
'JavaScript > JavaScript' 카테고리의 다른 글
[JavaScript] 자바스크립트 수행단계 (파싱, 실행) (0) | 2014.01.26 |
---|---|
[JavaScript] jsfiddle (0) | 2014.01.24 |
[JavaScript] use strict (0) | 2013.12.25 |
[JavaScript] 정규 표현식을 시각화 해주는 도구 (0) | 2013.12.25 |
[JavaScript] JavaScript OOP Tutorial (0) | 2013.12.04 |
트랙백
댓글
글
'DB / NoSQL > MongoDB' 카테고리의 다른 글
[MongoDB] Shell Option (0) | 2013.12.31 |
---|---|
[MongoDB] MongoDB Site (0) | 2013.11.22 |
[MongoDB] MongoDB Client (0) | 2013.11.21 |
트랙백
댓글
글
'OS > Mac' 카테고리의 다른 글
[Mac] 터미널로 SSH 접속 (0) | 2014.03.27 |
---|---|
[Mac] SideEffects (0) | 2014.01.29 |
[Mac] 산돌 고딕 사용하기 (0) | 2014.01.08 |
[Mac] Ofiice for Mac Clean Uninstall (2011 Mac 용 Office를 완전히 제거 하는 방법) (0) | 2014.01.08 |
[Mac] Mac Safari 폰트 설정하기 (0) | 2013.12.25 |
트랙백
댓글
글
[Spring] SpringFramework 3.2.6.RELEASE format-configuring-formatting-mvc
설정
'Java > SpringFramework' 카테고리의 다른 글
[Spring] servlet context와 root context의 component-scan의 미묘한 차이점 (잘못하면 404 에러뜸) (0) | 2014.03.26 |
---|---|
[Spring] Spring-data Redis (0) | 2014.03.25 |
[Spring] Creating RESTful services, HiddenHttpMethodFilter (0) | 2014.01.21 |
[Spring] Validation (0) | 2014.01.21 |
[Spring] Spring 3.1 + Redis 를 이용한 Cache (0) | 2013.12.18 |
트랙백
댓글
글
[Spring] Creating RESTful services, HiddenHttpMethodFilter
설정
'Java > SpringFramework' 카테고리의 다른 글
[Spring] Spring-data Redis (0) | 2014.03.25 |
---|---|
[Spring] SpringFramework 3.2.6.RELEASE format-configuring-formatting-mvc (0) | 2014.01.22 |
[Spring] Validation (0) | 2014.01.21 |
[Spring] Spring 3.1 + Redis 를 이용한 Cache (0) | 2013.12.18 |
[Spring] 객체 검증의 종결자 @Valid (0) | 2013.12.16 |
트랙백
댓글
글
'일반' 카테고리의 다른 글
[Internet] 인터넷 미디어 타입 (0) | 2014.06.24 |
---|---|
[CI] Continuous Intergation by Martin Fowler (지속적 통합) (0) | 2014.04.02 |
노땅 개발자가 가야할길 (0) | 2014.01.19 |
[Things] Things for Mac - 각 메뉴 구분법 (0) | 2014.01.10 |
codecademy 웹상에서 컴퓨터 언어를 배우는 사이트 (0) | 2013.12.18 |
트랙백
댓글
글
힙사이즈 조절
$cp /Applications/IntelliJ IDEA 13.app/bin/idea.vmoptions ~/Library/Preferences/IntelliJIDEA13/idea.vmoptions
$vi ~/Library/Preferences/IntelliJIdea13/idea.vmoptions
-Xms2048m
-Xmx2048m
-XX:MaxPermSize=512m
-XX:ReservedCodeCacheSize=128m
-XX:+UseCompressedOops
'IDE/Tool > IntelliJ IDEA' 카테고리의 다른 글
[IntelliJ IDEA] Tomcat JRE 변경하기 (0) | 2014.03.19 |
---|---|
[IntelliJ IDEA] idea.vmoptions 메모리 설정 (0) | 2014.03.18 |
[IntelliJ IDEA] intelliJ IDEA12 JRE 1.6 -> 1.7 변경 방법 (0) | 2013.11.26 |
[IntelliJ IDEA] Live Templates (0) | 2013.11.05 |
[IntelliJ IDEA] Unit Test (0) | 2013.11.04 |
트랙백
댓글
글
'Java > SpringFramework' 카테고리의 다른 글
[Spring] SpringFramework 3.2.6.RELEASE format-configuring-formatting-mvc (0) | 2014.01.22 |
---|---|
[Spring] Creating RESTful services, HiddenHttpMethodFilter (0) | 2014.01.21 |
[Spring] Spring 3.1 + Redis 를 이용한 Cache (0) | 2013.12.18 |
[Spring] 객체 검증의 종결자 @Valid (0) | 2013.12.16 |
[Spring] spring-data-mongodb Sample (0) | 2013.11.20 |
트랙백
댓글
글
'일반' 카테고리의 다른 글
[CI] Continuous Intergation by Martin Fowler (지속적 통합) (0) | 2014.04.02 |
---|---|
[REST] REST API 설계 (0) | 2014.01.21 |
[Things] Things for Mac - 각 메뉴 구분법 (0) | 2014.01.10 |
codecademy 웹상에서 컴퓨터 언어를 배우는 사이트 (0) | 2013.12.18 |
ClenCode 서비스 후기 (0) | 2013.12.18 |
트랙백
댓글
글
Jackson Documentation: http://wiki.fasterxml.com/JacksonDocumentation
Jackson 2 Annotation: http://wiki.fasterxml.com/JacksonAnnotations
'Java > Jackson' 카테고리의 다른 글
[Jackson] Jackson-datatype-hibernate4 (0) | 2014.04.24 |
---|
트랙백
댓글
글
인텔리 센스 적용 : https://github.com/git/git/blob/master/contrib/completion/git-completion.bash
글꼴 및 테마 적용 : http://whiteship.me/?p=13816
'VCS > Git' 카테고리의 다른 글
[Git] SVN 능력자를 위한 git 개념 가이드 (0) | 2014.04.04 |
---|---|
[Git] Set up SSH for Git (0) | 2014.04.04 |
[Git] Learn Git Branching (0) | 2014.01.13 |
[Git] Merge VS Rebase (0) | 2013.12.27 |
[Git] Pro Git 한글 문서 (0) | 2013.12.20 |
트랙백
댓글
글
'JavaScript > NodeJS' 카테고리의 다른 글
[NodeJS] Node js 기본 사용법 (0) | 2015.05.09 |
---|---|
[NodeJs] Ryan Dahl의 Node.js 소개 (0) | 2014.01.28 |
[Node.js] Render ejs with express (0) | 2014.01.13 |
[Node.js] Express - API 가이드 문서 (0) | 2014.01.13 |
[Node.js] IntelliJ에서 Node 사용시 [ReferenceError: Process is not defined] 발생시 대처 (0) | 2014.01.10 |
트랙백
댓글
글
'VCS > Git' 카테고리의 다른 글
[Git] Set up SSH for Git (0) | 2014.04.04 |
---|---|
[Git] git command를 편하게 변경하기 (0) | 2014.01.15 |
[Git] Merge VS Rebase (0) | 2013.12.27 |
[Git] Pro Git 한글 문서 (0) | 2013.12.20 |
[Git] Advanced Git (0) | 2013.11.27 |
트랙백
댓글
글
링크 : https://github.com/visionmedia/ejs
링크 : http://runnable.com/UTlPPF-f2W1TAAEa/render-ejs-with-express
var express = require('express');
var app = express();
// Register ejs as .html. If we did
// not call this, we would need to
// name our views foo.ejs instead
// of foo.html. The __express method
// is simply a function that engines
// use to hook into the Express view
// system by default, so if we want
// to change "foo.ejs" to "foo.html"
// we simply pass _any_ function, in this
// case `ejs.__express`.
app.engine('.html', require('ejs').__express);
// Optional since express defaults to CWD/views
app.set('views', __dirname + '/views');
// Without this you would need to
// supply the extension to res.render()
// ex: res.render('users.html').
app.set('view engine', 'html');
// Dummy users
var users = [
{ name: 'tobi', email: 'tobi@learnboost.com' },
{ name: 'loki', email: 'loki@learnboost.com' },
{ name: 'jane', email: 'jane@learnboost.com' }
];
app.get('/', function(req, res){
res.render('users', {
users: users,
title: "EJS example",
header: "Some users"
});
});
app.listen(80);
console.log('Express app started on port %d', 80);
'JavaScript > NodeJS' 카테고리의 다른 글
[NodeJs] Ryan Dahl의 Node.js 소개 (0) | 2014.01.28 |
---|---|
[Node.js] Node-webkit 링크 (0) | 2014.01.15 |
[Node.js] Express - API 가이드 문서 (0) | 2014.01.13 |
[Node.js] IntelliJ에서 Node 사용시 [ReferenceError: Process is not defined] 발생시 대처 (0) | 2014.01.10 |
[Node.js] Node download (0) | 2014.01.10 |
트랙백
댓글
글
'JavaScript > NodeJS' 카테고리의 다른 글
[Node.js] Node-webkit 링크 (0) | 2014.01.15 |
---|---|
[Node.js] Render ejs with express (0) | 2014.01.13 |
[Node.js] IntelliJ에서 Node 사용시 [ReferenceError: Process is not defined] 발생시 대처 (0) | 2014.01.10 |
[Node.js] Node download (0) | 2014.01.10 |
[Node.js] Node.js tutorial (0) | 2013.04.23 |
트랙백
댓글
글
[Node.js] IntelliJ에서 Node 사용시 [ReferenceError: Process is not defined] 발생시 대처
설정
링크 : https://github.com/Chevex/UglifyJS2/commit/7348facbe994aa1909a276b4be54f13c7f01e079
IntelliJ IDEA를 사용하고 있는데 Node Module을 만들고 구동했더니
콘솔에 [ReferenceError: Process is not defined] 발생했다.
구글링 모듈 Root의 node_modules 하위의 tools/node.js의 'vm.createContext'을 찾아서 아래의 하이라이팅 부분(4, 5 라인)을
추가해 준다.
var UglifyJS = vm.createContext({
sys : sys,
console : console,
process : process,
Buffer : Buffer,
MOZ_SourceMap : require("source-map")
});
'JavaScript > NodeJS' 카테고리의 다른 글
[Node.js] Render ejs with express (0) | 2014.01.13 |
---|---|
[Node.js] Express - API 가이드 문서 (0) | 2014.01.13 |
[Node.js] Node download (0) | 2014.01.10 |
[Node.js] Node.js tutorial (0) | 2013.04.23 |
[Node.js] Node.js 한글 페이지 (0) | 2012.02.09 |
트랙백
댓글
글
'일반' 카테고리의 다른 글
[REST] REST API 설계 (0) | 2014.01.21 |
---|---|
노땅 개발자가 가야할길 (0) | 2014.01.19 |
codecademy 웹상에서 컴퓨터 언어를 배우는 사이트 (0) | 2013.12.18 |
ClenCode 서비스 후기 (0) | 2013.12.18 |
[BAT] 배치파일 문법 (0) | 2013.11.20 |
트랙백
댓글
글
Download : http://nodejs.org/download/
Documentation : http://nodejs.org/api/
'JavaScript > NodeJS' 카테고리의 다른 글
[Node.js] Render ejs with express (0) | 2014.01.13 |
---|---|
[Node.js] Express - API 가이드 문서 (0) | 2014.01.13 |
[Node.js] IntelliJ에서 Node 사용시 [ReferenceError: Process is not defined] 발생시 대처 (0) | 2014.01.10 |
[Node.js] Node.js tutorial (0) | 2013.04.23 |
[Node.js] Node.js 한글 페이지 (0) | 2012.02.09 |
RECENT COMMENT