springboot

springboot basic framework integration.

Лицензия

Лицензия

Группа

Группа

com.cuisongliu
Идентификатор

Идентификатор

springboot
Последняя версия

Последняя версия

1.0.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

springboot
springboot basic framework integration.
Ссылка на сайт

Ссылка на сайт

https://github.com/cuisongliu/springboot
Система контроля версий

Система контроля версий

https://github.com/cuisongliu/springboot

Скачать springboot

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.cuisongliu/springboot/ -->
<dependency>
    <groupId>com.cuisongliu</groupId>
    <artifactId>springboot</artifactId>
    <version>1.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/com.cuisongliu/springboot/
implementation 'com.cuisongliu:springboot:1.0.5'
// https://jarcasting.com/artifacts/com.cuisongliu/springboot/
implementation ("com.cuisongliu:springboot:1.0.5")
'com.cuisongliu:springboot:jar:1.0.5'
<dependency org="com.cuisongliu" name="springboot" rev="1.0.5">
  <artifact name="springboot" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.cuisongliu', module='springboot', version='1.0.5')
)
libraryDependencies += "com.cuisongliu" % "springboot" % "1.0.5"
[com.cuisongliu/springboot "1.0.5"]

Зависимости

compile (17)

Идентификатор библиотеки Тип Версия
org.springframework.boot : spring-boot-starter-web jar 1.5.3.RELEASE
org.springframework.boot : spring-boot-starter-jdbc jar 1.5.3.RELEASE
org.springframework.boot : spring-boot-starter-aop jar 1.5.3.RELEASE
org.springframework.boot : spring-boot-starter-thymeleaf jar 1.5.3.RELEASE
cglib : cglib-nodep jar 3.2.5
commons-codec : commons-codec jar 1.9
commons-beanutils : commons-beanutils-core jar 1.8.3
commons-collections : commons-collections jar 3.2.2
commons-lang : commons-lang jar 2.6
org.jsoup : jsoup jar 1.10.2
com.alibaba : fastjson jar 1.2.32
mysql : mysql-connector-java jar 5.1.42
org.mybatis.spring.boot : mybatis-spring-boot-starter jar 1.3.0
tk.mybatis : mapper-spring-boot-starter jar 1.1.1
com.github.pagehelper : pagehelper-spring-boot-starter jar 1.1.1
com.cuisongliu : orderbyhelper-spring-boot-starter jar 1.0.2
com.cuisongliu : druid-spring-boot-starter jar 1.1.0

test (1)

Идентификатор библиотеки Тип Версия
org.springframework.boot : spring-boot-starter-test jar 1.5.3.RELEASE

Модули Проекта

Данный проект не имеет модулей.

license license

springboot basic framework integration

帮助你集成框架 到 Spring Boot。

Help you integrate the framework to Spring Boot.

How to use

maven

在pom.xml加入nexus资源库(解决中国访问慢的问题,已经加入中央仓库)

Add the following nexus repository(fix china access slow problem,already append to central nexus.) to your pom.xml:

<repositories>
    <repository>
        <id>nexus</id>
        <name>nexus</name>
        <url>http://maven.cuisongliu.com/content/groups/public</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

在pom.xml加入依赖

Add the following dependency to your pom.xml:

<dependency>
   <groupId>com.cuisongliu</groupId>
   <artifactId>springboot-puls</artifactId>
   <version>2.0</version>
 </dependency>

gradle

在build.gradle加入nexus资源库(解决中国访问慢的问题,已经加入中央仓库)

Add the following nexus repository(fix china access slow problem,already append to central nexus.) to your build.gradle:

allprojects {
    repositories {
        mavenLocal()
        maven { url "http://maven.cuisongliu.com/content/groups/public" }
        mavenCentral()
        jcenter()
    }
}

在build.gradle加入依赖

Add the following dependency to your build.gradle:

compile "com.cuisongliu:springboot-plus-core:2+"

Add cuisongliu's springboot to project

1. add to project configure
2. application.java extends from SpringMvcConfig
3. application.java append to @ComponentScan and @MapperScan
4.  @ComponentScan and @MapperScan not set package com.cuisongliu prefix

1. 在项目中加入项目配置文件
2. 在springboot 的入口继承SpringMvcConfig
3. 在入口类加入ComponentScan和MapperScan配置
4.  @ComponentScan 和 @MapperScan  不能设置为com.cuisongliu开头

Example for cuisongliu's springboot

Acknowledgments

druid

druid-starter

mapper

pagehelper

OrderByHelper

OrderByHelper-starter

mybatis

Версии библиотеки

Версия
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0