You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
webcrawler/web/src/main/java/web/config/AppConfig.java

15 lines
473 B

package web.config;
import db.config.HibernateConfig;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.PropertySource;
@Configuration
@EnableAspectJAutoProxy(proxyTargetClass = true)
@PropertySource("classpath:config.properties")
@Import(HibernateConfig.class)
public class AppConfig {
}