Skip to content

Instantly share code, notes, and snippets.

View ningthoujam-lokhendro's full-sized avatar

ningthoujam-lokhendro ningthoujam-lokhendro

View GitHub Profile
@ningthoujam-lokhendro
ningthoujam-lokhendro / ApacheCommonExample.java
Last active June 11, 2023 15:08
POJO to Map conversion
/**
* Using Apache Common Bean Utils.
*/
import org.apache.commons.beanutils.BeanUtils;
import java.util.HashMap;
public class ApacheCommonExample throws IllegalAccessException,
InvocationTargetException, NoSuchMethodException {
public HashMap<String,Object> convert(Person person) {
@ningthoujam-lokhendro
ningthoujam-lokhendro / dependencies.xml
Last active August 29, 2015 14:04
Spring MVC - DeviceDetails
<!-- Spring Dependencies -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>