일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xPlatform
- react
- mybatis
- vaadin
- Sqoop
- Eclipse
- hadoop
- SPC
- MSSQL
- Java
- Python
- GIT
- Express
- mapreduce
- Android
- IntelliJ
- table
- 보조정렬
- Kotlin
- plugin
- 공정능력
- SSL
- window
- R
- SQL
- Spring
- tomcat
- JavaScript
- es6
- NPM
- Today
- Total
목록분류 전체보기 (661)
DBILITY
클래스명, 메서드명, 속성명, 이벤트명은 Pascal Case public void Order //클래스명. Pascal Case { public int OrderId { get; set; } //속성명. Pascal Case public void PlaceOrder(int id) //메서드명. Pascal Case { .... } public event EventHandler Completed; //이벤트명. Pascal Case } 상수가 아닌 필드명은 Camel Case class TestClass { int startIndex; //Camel Case string lastName; } 메서드 파라미터는 Camel Case CallMethod(startIndex, endIndex); 로컬 변수명은 ..
http://pinvoke.net/ pinvoke.net: the interop wiki! Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't. To create a page in a module other than misc, prefix the name with the module name and a period. What is PInvoke.net? A wiki for .NET developers PIn pinvoke.net http://www.csharpstudy.com/Practical/Prac-pinvoke.aspx C# P/Invoke 사용 - C# 프로그..
로컬 개발 시 포트만 달리하여 여러 개의 톰캣을 사용할 때가 있다. 이때 JSessionID는 IP로 구분하게 된다.도메인으로 운영되면 문제가 없다. 그러다 보니 세션이 끊기게 된다. server.xml의 Context에 sessionCookieName을 적절한 값으로 추가해 주면 된다. 기본은 JSESSIONID web.xml(3.0 이상)에 session-cookie jsessionid-name을 위와 같이 변경해 줘도 된다. 30 JSESSIONID_NAME 문제는 web module version이 2.5일때다. intellij에선 project structure의 project settings 하위의 Modules -> Web부분에 Add Application Server specific......
https://github.com/spring-projects/spring-loaded/wiki/Basic-usage-information mvnrepository에 1.2.8을 검색하고 pom.xml에 추가한다. java option -Dspringloaded=explain -javaagent:C:\Dev64\maven\repository\org\springframework\springloaded\1.2.8.RELEASE\springloaded-1.2.8.RELEASE.jar