Search in sources :

Example 1 with JobConsoleException

use of com.dangdang.ddframe.job.lite.console.exception.JobConsoleException in project elastic-job by dangdangdotcom.

the class AbstractXmlRepositoryImpl method save.

@Override
public synchronized void save(final E entity) {
    try {
        Marshaller marshaller = jaxbContext.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(entity, file);
    } catch (final JAXBException ex) {
        throw new JobConsoleException(ex);
    }
}
Also used : Marshaller(javax.xml.bind.Marshaller) JAXBException(javax.xml.bind.JAXBException) JobConsoleException(com.dangdang.ddframe.job.lite.console.exception.JobConsoleException)

Aggregations

JobConsoleException (com.dangdang.ddframe.job.lite.console.exception.JobConsoleException)1 JAXBException (javax.xml.bind.JAXBException)1 Marshaller (javax.xml.bind.Marshaller)1