This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Display details of jobs where the minimum salary is greater than 10000. | |
| 2. Display the first name and join date of the employees who joined between 2002 and 2005. | |
| 3. Display first name and join date of the employees who is either IT Programmer or Sales Man. | |
| 4. Display employees who joined after 1st January 2008. | |
| 5. Display details of employee with ID 150 or 160. | |
| 6. Display first name, salary, commission pct, and hire date for employees with salary less than 10000. | |
| 7. Display job Title, the difference between minimum and maximum salaries for jobs with max salary in the range 10000 to 20000. | |
| 8. Display first name, salary, and round the salary to thousands. | |
| 9. Display details of jobs in the descending order of the title. | |
| 10. Display employees where the first name or last name starts with S. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.x.example; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import org.springframework.stereotype.Component; | |
| @Component("batchProducer") | |
| public class BatchProducerJob { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://blog.grovehillsoftware.com/2009/08/interruptible-jdbc-statements.html | |
| ---------------------------help for cron re scheduling-------------------------------- | |
| https://pragmaticintegrator.wordpress.com/2007/04/26/scheduling-with-spring-and-quartz/ | |
| http://forum.spring.io/forum/spring-projects/container/22852-setting-dynamic-property | |
| ---------------------------End help for cron re scheduling---------------------------- | |
| ------------------handling xml in angular js----------------- | |
| http://jsfiddle.net/mahbub/b8Wcz/ | |
| --------------------d3js sample program-------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.x.ocr; | |
| import java.awt.Graphics2D; | |
| import java.awt.image.BufferedImage; | |
| import java.io.BufferedWriter; | |
| import java.io.File; | |
| import java.io.FileWriter; | |
| import java.io.IOException; | |
| import javax.imageio.ImageIO; |
NewerOlder