InzAuthcApplication.java 587 Bytes
Newer Older
PWF-WK01\pengwufeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.beecode.inz.war;

import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
import org.springframework.context.annotation.ImportResource;

import com.beecode.amino.boot.web.AminoWebApplication;

@SpringBootApplication(exclude=HibernateJpaAutoConfiguration.class)
@ImportResource(value = { "classpath:config/persistence.xml" })
public class InzAuthcApplication extends AminoWebApplication {

	public static void main(String[] args) {
		start(InzAuthcApplication.class, args);
	}
}