资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

Spring项目运行怎么依赖spring-contex

小编这次要给大家分享的是Spring项目运行怎么依赖spring-contex,文章内容丰富,感兴趣的小伙伴可以来了解一下,希望大家阅读完这篇文章之后能够有所收获。

让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名与空间、网站空间、营销软件、网站建设、光山网站维护、网站推广。

spring项目跑起来,只需要spring-context这1个依赖项就行,参考下面:

一、pom.xml

<?xml version="1.0" encoding="UTF-8"?>

  4.0.0

  com.cnblogs.yjmyzz
  spring-boot-demo
  0.0.1-SNAPSHOT

  
    1.8
  

  
    
      org.springframework
      spring-context
      5.2.4.RELEASE
    
  

  
    
      
        maven-compiler-plugin
        3.1
        
          1.8
          1.8
        
      
    
  

二、示例代码:

package com.cnblogs.yjmyzz.springbootdemo;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Service;

/**
 * @author 菩提树下的杨过
 */
@ComponentScan("com.cnblogs.yjmyzz")
@Configuration
public class SampleApplication {

  interface SampleService {
    void helloWorld();
  }

  @Service
  class SampleServiceImpl implements SampleService {

    @Override
    public void helloWorld() {
      System.out.println("hello spring");
    }
  }

  public static void main(String[] args) {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SampleApplication.class);
    SampleService service = context.getBean(SampleService.class);
    service.helloWorld();
  }
}

项目结构:

Spring项目运行怎么依赖spring-contex

spring-context的依赖关系如下:

Spring项目运行怎么依赖spring-contex

看完这篇关于Spring项目运行怎么依赖spring-contex的文章,如果觉得文章内容写得不错的话,可以把它分享出去给更多人看到。


新闻标题:Spring项目运行怎么依赖spring-contex
分享URL:http://cdkjz.cn/article/pdcodg.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220