일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android
- NPM
- tomcat
- Spring
- Kotlin
- SSL
- SPC
- Express
- 보조정렬
- react
- vaadin
- R
- SQL
- plugin
- Eclipse
- 공정능력
- hadoop
- Python
- mybatis
- window
- JavaScript
- es6
- GIT
- MSSQL
- table
- IntelliJ
- xPlatform
- mapreduce
- Java
- Sqoop
- Today
- Total
목록전체 글 (649)
DBILITY
대리자라고들 하고 번역대로라면 위임하다정도 되겠다. 뭘 위임한다는 것일까..결국 Method에 대한 참조다. callback method를 생각해 보자. 피호출자에게 호출자의 메서드를 넘겨주고 피호출자가 그 메서드를 실행한다. 결국 메모리상의 메서드(함수)의 위치값을 넘기는게 되는거지..뭐라는건지ㅎㅎ C# 전문가가 아니다보니 그동안 전통적 방식의 델리게이트만 썼는데, 2.0부터 간소화되었군.. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void ..
클래스명, 메서드명, 속성명, 이벤트명은 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......