Giter Site home page Giter Site logo

yl-bdf's Introduction

yiueil-bdf

基础开发框架

增加模块步骤

  • 创建模块
  • pom添加部署配置
<profiles>
    <profile>
        <id>snapshot</id>
        <distributionManagement>
            <repository>
                <id>local-repo-snapshot</id>
                <name>本地发布仓库地址</name>
                <url>file://${basedir}/../maven-repo</url>
            </repository>
        </distributionManagement>
    </profile>
    <profile>
        <id>release</id>
        <distributionManagement>
            <repository>
                <id>github-repo</id>
                <name>GitHub Apache Maven Packages</name>
                <url>https://maven.pkg.github.com/YIueil/yl-bdf</url>
            </repository>
        </distributionManagement>
    </profile>
</profiles>

发布模块步骤

  • maven环境中勾选snapshot通过deploy打包提交代码会将内容发布到github-pages中进行管理
  • maven环境中勾选release通过deploy打包将将发布到github-packages中进行管理(推荐, 需要再maven setting中配置 access key)

使用yl-bdf

pom.xml

    <repositories>
        <repository>
            <id>github-rich-repo</id>
            <name>YIueil's Maven Repository on Github</name>
            <url>https://yiueil.github.io/yl-bdf/maven-repo/</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>cc.yiueil</groupId>
            <artifactId>yl-bdf-all</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>

使用yl-bdf-web

    <repositories>
        <repository>
            <id>github-rich-repo</id>
            <name>YIueil's Maven Repository on Github</name>
            <url>https://yiueil.github.io/yl-bdf/maven-repo/</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>cc.yiueil</groupId>
            <artifactId>yl-bdf-web</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
    </dependencies>

并在你的spring中添加配置的引入

    <import resource="spring/yl-bdf-spring.xml"/>

TODO List

  • Redis缓存模块的支持
  • 大文件的分片上传和断点续传产品功能实现

yl-bdf's People

Contributors

yiueil avatar

Stargazers

 avatar

Watchers

 avatar

Forkers

aleaffalling

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.