• spring boot配置service发布服务


    在application.yml中配置

    server:
      port: 8080
      context-path: /crm
    spring:
      datasource:
        driver-class-name: com.mysql.jdbc.Driver
        url: jdbc:mysql://localhost:3306/crm
        username: root
        password: 136735
      jpa:
        show-sql: true
      jackson:
        default-property-inclusion: non_null
      devtools:
        restart:
          enabled: true
    cxf:
      path: /services   #使用service发布服务,需要在/crm后面加上/service,
    #要添加依赖:否则解析不了,做不了映射  "org.apache.cxf:cxf-spring-boot-starter-jaxrs:$boot_starter_jaxrs_version"
    servlet.init: service-list-path: /info jaxrs: component-scan: true

    service发布服务

    package top.kylewang.crm.controller;
    
    import org.springframework.stereotype.Service;
    import org.springframework.transaction.annotation.Transactional;
    import org.springframework.web.bind.annotation.ResponseBody;
    
    import javax.ws.rs.Consumes;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    
    @Path("path")
    @Service
    @Transactional(rollbackFor = Exception.class)
    public class TestPath {
        @Path("/p1")
        @GET
        @Consumes({"application/xml", "application/json"})
        public String getString() {
            return "path";
        }
    }

    访问 http://localhost:8080//crm/services/path/p1

    返回path

    带参数的请求。

    @Path("QueryProductService")
    public interface QueryProductService {
        /**
         * 查询商品根据Uid
         * @return
         */
        @Path("/QueryProductBypid")
        @GET                                                //post 参数在请求体中,get在url中
        @Consumes({"application/xml", "application/json"})    //返回void用consumes
        Product QueryProductBypid(@QueryParam("id") String id);
    }

    url  http://127.0.0.1:9001/background/services/QueryProductService/QueryProductBypid?id=556556887752

  • 相关阅读:
    UVa 116 单向TSP(多段图最短路)
    POJ 1328 Radar Installation(贪心)
    POJ 1260 Pearls
    POJ 1836 Alignment
    POJ 3267 The Cow Lexicon
    UVa 1620 懒惰的苏珊(逆序数)
    POJ 1018 Communication System(DP)
    UVa 1347 旅行
    UVa 437 巴比伦塔
    UVa 1025 城市里的间谍
  • 原文地址:https://www.cnblogs.com/liyafei/p/8485616.html
Copyright © 2020-2023  润新知