บทความ

กำลังแสดงโพสต์จาก เมษายน, 2012

Spring Framework กับการใช้งาน config file ด้วย PropertyPlaceholderConfigurer

บทความเกี่ยวกับ : Spring Framework กับการใช้งาน config file ด้วย PropertyPlaceholderConfigurer บางงานผมจำเป็นต้องมีการเก็บค่าบางอย่างลงใน Properties file เพื่อเป็น Configuration ไว้ใช้งานในระบบ วิธีการของผมคือ ผมจะวางไฟล์ นี้ไว้ใน Class Path หรือ หัอง SRC จากนั้นทำกาน Load file นี้ขึ้นมาใช้ได้ด้วย PropertyPlaceholderConfigurer  ตามตัวอย่าง     <!-- Spring properties file config -->     <bean name="propertyPlaceholder"         class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">         <property name="locations">             <list>                 <value>classpath*:db.properties</value>             </list>         </property> ...

Java Date Format จัดรูปแบบวันที่ด้วย SimpleDateFormat

บทความเกี่ยวกับ : Java Date Format จัดรูปแบบวันที่ด้วย SimpleDateFormat วันนี้จะมานำเสนอวิธีการจัด Format Date ด้วยรูปแบบต่างๆ ผ่าน Class ที่มีชื่อว่า java.text.SimpleDateFormat มาดูตัวอย่างกันเลยครับ         Date date=new Date();         System.out.println("No format :"+date);         java.text.SimpleDateFormat df= new java.text.SimpleDateFormat();         System.out.println("No pattern format :"+df.format(date));         df.applyPattern("dd/mm/yyyy");         System.out.println("dd/mm/yyyy format :"+df.format(date));         df.applyPattern("dd/mm/yyyy HH:mm:ss");         System.out.println("dd/mm/yyyy HH:mm:ss format :"+df.format(date)); จากตัวอย่างข้างต้นผลการ Run ออกมาได้ตามนี้ No format :Thu Apr 05 16:29:18 ICT 2012 No patter...