Notice
                              
                          
                        
                          
                          
                            Recent Posts
                            
                        
                          
                          
                            Recent Comments
                            
                        
                          
                          
                            Link
                            
                        
                    | 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 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 | 31 | 
                            Tags
                            
                        
                          
                          - 웹 서비스
- SpringSource Tool Suite
- Maven
- MANTIS
- 이클립스
- MS-SQL
- asp.net
- Eclipse
- Web Service
- WebView
- jsp
- STS
- C#
- html
- Redirect
- 자바스크립트
- 컬럼명
- varags
- 자바
- TextBox
- Apache Lucene
- MSsql
- Bootstrap
- scrollView
- Android
- javascript
- 웹뷰
- 안드로이드
- Java
- decompiler
                            Archives
                            
                        
                          
                          - Today
- Total
목록분류 전체보기 (286)
bboks.net™
      
      
        Spring RestTemplate timeout 지정
        
  
  
        
    
        
  
    자바 코드기반 구성 HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(); factory.setReadTimeout(2000); //milliseconds factory.setConnectionTimeout(2000); // milliseconds RestTemplate restTemplate = new RestTemplate(factory); XML 기반 구성 [출처] How to Set HTTP Request Timeouts With Spring RestTemplate
        Java
        
        2015. 1. 15. 16:51
      
    
      
      
        자바에서 파일을 복사하는 4가지 방법
        
  
  
        
    
        
  
    1. FileStream private static void copyFileUsingFileStreams(File source, File dest) throws IOException { InputStream input = null; OutputStream output = null; try { input = new FileInputStream(source); output = new FileOutputStream(dest); byte[] buf = new byte[1024]; int bytesRead; while ((bytesRead = input.read(buf)) > 0) { output.write(buf, 0, bytesRead); } } finally { input.close(); output.clo..
        Java/Java
        
        2015. 1. 13. 14:14
      
    
      
      
        안드로이드 SVN gen 폴더와 bin 폴더 제외하기
        
      
      
  
  
        
    
        
  
    
  
  
        
    
            
            
            
            
            
            
              
            
          
        IDE/STS | Eclipse
        
        2014. 12. 26. 18:36