본문 바로가기
반응형

FullStack153

CSS Media Type JavaScript UI 를 보다보니 css를 불러오는 구문에 media type이 지정되어 있었다.지금까지 잘 본적없는 부분이라서 확인해보니 다음과 같았다. allUsed for all media type devices (모든 종류의 장비)auralUsed for speech and sound synthesizers (목소리나 사운드에 대한 장비)brailleUsed for braille tactile feedback devices (점자 피드백 장비)embossedUsed for paged braille printers (페이지 점자 프린터)handheldUsed for small or handheld devices (소형 또는 휴대용 장비)printUsed for printers (프린터)proje.. 2012. 5. 8.
warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds Ant로 빌드시 다음의 경고가 나타났다.warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds Buildfile: D:\Dev_home\workspace\springapp\build.xmlbuild: [javac] D:\Dev_home\workspace\springapp\build.xml:44: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable buildsBUILD SUCCESSFULTotal time: 262 .. 2012. 3. 30.
[ANT] taskdef class org.apache.catalina.ant.InstallTask cannot be found Ant로 되어있는 샘플을 돌릴려고 하던중에 ant에서 다음의 오류를 돌려주었다.BUILD FAILEDD:\Dev_home\workspace\springapp\build.xml:84: taskdef class org.apache.catalina.ant.InstallTask cannot be foundusing the classloader AntClassLoader[D:\Dev_home\apache-tomcat-7.0.26\lib\catalina-ant.jar] 그리해서 build.xml에서 org.apache.catalina.ant.InstallTask 이 부분이 문제였던듯.org.apache.catalina.ant.DeployTask 변경하니 잘 돌아간다. :) Before After 참고 : http:.. 2012. 3. 30.
Ant로 컴파일 및 Tomcat 서버 배포 얼마 전 프로젝트 사용한 ant 배포 파일입니다. Maven 으로 처리하고 싶었지만 maven 에 대한 사전지식이 부족하여 ant로 뚝딱뚝딱. Ant로 컴파일, tomcat 배포, 등등의 기능이 포함되어 있습니다. Build.properties ############################################################################### # # ant 배포 설정파일 # # 2012. nakanara ############################################################################### # Application Name name=nakanara #################################.. 2012. 3. 16.
반응형