| 1 2 3 4 5 6 7 8 9 10 11 12 13 | __author__ ='sanaes'importpsutildefkillUplusApp():    killProcessName =['SDSMan.exe','ComAgent.exe','DSCNTSRV.EXE','PIAgent.exe','PIProtectorNS64.exe','PISupervisor.exe','PaTray.exe','PaSvc.exe']    forp inpsutil.process_iter():        forkpn inkillProcessName:            ifp.name() ==kpn:                printp.kill               # print p.terminate()killUplusApp() | 
로컬에 있는 프로세스 죽이기
2015. 10. 16. 17:39
maven 의존성 코드 보기 및 소스 배포
2015. 9. 25. 10:44
goal을 dependency:sources 이걸로 걸면 의존성 코드 소스가 셋팅 된다 
플러그인 설정은 
이렇게 해면 install 시 소스까지 같이 배포됨
            
	| 1 2 3 4 5 6 7 8 9 10 11 | <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions>  <execution>   <goals>    <goal>jar</goal>   </goals>  </execution> </executions></plugin> | 
알프레스코(alfresco) java-backed 웹 스크립트(webscript)
2015. 9. 25. 10:43
| 1 2 3 4 5 | <beans> <beanid="webscript.org.alfresco.demo.simple.get"class="org.alfresco.module.demoscripts.SimpleWebScript"parent="webscript"> </bean></beans> |