我是靠谱客的博主 谨慎诺言,最近开发中收集的这篇文章主要介绍spring+mybatis实现的后台程序(全注解),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.代替applicationContext.xml

import com.config.AppConfiguration;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
/**
*
*
* @Description: 启动主程序
* @date
*/
public class Application {
private static Logger logger = LogManager.getLogger(Application.class);
public static void main(String[] args) {
logger.info("----------spring-begin----------");
new AnnotationConfigApplicationContext(AppConfiguration.class);
logger.info("----------spring-end----------");
}
}

使用AnnotationConfigApplicationContext可以实现基于Java的配置类加载Spring的应用上下文。避免使用application.xml进行配置。相比XML配置,更加便捷。

import org.springframework.context.annotation.AnnotationConfigApplicationContext;
jar:spring-context-4.3.8RELEASE.jar
public AnnotationConfigAp

最后

以上就是谨慎诺言为你收集整理的spring+mybatis实现的后台程序(全注解)的全部内容,希望文章能够帮你解决spring+mybatis实现的后台程序(全注解)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部