เพราะว่าเป็น Enterprise เลยต้องมีเวลา Customize เพิ่มครับ
1. ต้อง Downgrade ให้ไปใช้ JPA2.0 แทนเพราะ Spring Boot ใช้ JPA2.1 (JPA จะโหลดจาก Application Server ไม่สามารถ Config ให้โหลดจาก Web Project ได้ครับ) ทีนี่
2. Spring Boot จะ config แบบ no web.xml โดยการ extend SpringInitializer ถ้า Websphere...
วันเสาร์ที่ 16 กรกฎาคม พ.ศ. 2559
การ Config SpringBoot ให้ใช้งานแบบมี web.xml
การ Config แบบนี้จะต้องย้ายพวก filter ออกมาจาก annotation แล้วมา config บน web.xml ให้หมดด้วยครับ ไม่งั้นจะใช้งานไม่ได้ ใน web.xml ผมมีตัวอย่างของการ Config CXF ด้วย ว่าต้องย้ายมาไว้บน web.xml ด้วยไม่งั้นใช้งานไม่ได้
<context-param>
<param-name>contextConfigLocation</param-name>
...
วิธี Downgrade JPA จาก 2.1 เป็น 2.0 ของ SpringBoot
1. เริ่มจากเอา Config JPA ออกจาก SpringBoot ก่อนครับ โดยใช้ exclusion org.hibernate
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
...
วันอังคารที่ 7 กรกฎาคม พ.ศ. 2558
วันจันทร์ที่ 29 มิถุนายน พ.ศ. 2558
Spring Boot ตอนที่ 9 มาสร้าง Banner กัน
มาสร้าง Banner ลงบน Application ตอนเรา Start กันครับ
มันคือส่วนนี้
เราสามารถเปลี่ยนง่ายโดยการเพิ่ม banner.txt ไว้ที่ src/main/resources ครับ ก็จะได้ใช้ได้เลย
สามารถใช้เวบนี้ สร้างภาพได้ http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Demo%20Spring%20Boot
ส่วนสามารถปิดเปิด...
วันเสาร์ที่ 20 มิถุนายน พ.ศ. 2558
Spring Boot ตอนที่ 8 Testing
ต่อไปมาดูว่าเราจะเทสกันยังไงครับ ถ้าเป็น Unit Testing ไม่ใช่ส่วนของ Controller กับ Repository น่าจะเเขียนเทสได้เลยโดยไม่ต้องพึ่ง Spring-Test สกับพวก Integration Testing ก็ต้องใช้ Spring-Test ล่ะครับ
เรามาดูกัน
1. Config POM
<dependency>
<groupId>org.springframework.boot</groupId>...
วันศุกร์ที่ 19 มิถุนายน พ.ศ. 2558
Spring Boot ตอนที่ 7 Security
Spring Boot ก็ใช้ Spring Security ครับ ซึ่งก็ทำง่ายมาก แต่หันมาใช้การ Config ผ่าน Annotation และก็เขียนคลาสหมดไม่ได้ใช้ XML แล้วครับ ซึ่งอาจจะดูแปลกตาสำหรับคนที่ใช้ XML พอสมควร งั้นมาเริ่มกันเลย
1. Config POM เพิ่ม
<dependency>
<groupId>org.springframework.boot</groupId>...