Giter Club home page Giter Club logo

maplatform's Introduction

地图平台提供百度四维地图常用接口

mybatis-plus官方网址:https://mybatis.plus/

mybatis-plus慕课网教程:https://www.imooc.com/learn/1130

打jar包:项目名、端口都已配置文件为准
打war包:项目名、端口以容器里发布的为准

pom文件

本地启动时

  • pom文件不需要排除内置tomcat
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
    <!-- <exclusions>
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
        </exclusion>
    </exclusions>-->
</dependency>
  • application.yml 切换为开发环境dev
spring:
  profiles:
    active: dev
  • 注释weblogic数据源配置
com/picc/config/DataSourceConfig.java
com/picc/config/DSConfig.java

weblogic启动

  • pom文件排除内置tomcat
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
     <exclusions>
        <exclusion>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
        </exclusion>
    </exclusions>
</dependency>
  • application.yml 切换为开发环境weblogic
spring:
  profiles:
    active: weblogic
  • 放开注释weblogic数据源配置
com/picc/config/DataSourceConfig.java
com/picc/config/DSConfig.java

maplatform's People

Contributors

lhxnull avatar besttles avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.