spring-cloud-alibaba icon indicating copy to clipboard operation
spring-cloud-alibaba copied to clipboard

Aliyun Java Initializr Bug or Suggestion Report

Open theonefx opened this issue 5 years ago • 94 comments

请在这个 issue 中反馈针对 start.aliyun.com 的建议或者意见; Please submit your suggestions or comments about start.aliyun.com in this issue. IMG_8969

theonefx avatar May 13 '20 07:05 theonefx

Spring Boot 在前几天发布了2.3.0,但是start.aliyun.com上面还是旧的版本信息,请问什么时候start.aliyun.com会更新到新版本?

pruidong avatar May 20 '20 13:05 pruidong

Spring Boot 在前几天发布了2.3.0,但是start.aliyun.com上面还是旧的版本信息,请问什么时候start.aliyun.com会更新到新版本?

多谢反馈,本周会完成更新

theonefx avatar May 21 '20 03:05 theonefx

Spring Boot 在前几天发布了2.3.0,但是start.aliyun.com上面还是旧的版本信息,请问什么时候start.aliyun.com会更新到新版本?

多谢反馈,本周会完成更新

好的.谢谢.

pruidong avatar May 22 '20 02:05 pruidong

快点更新把

刚看了一下,start.aliyun.com已经更新了.

pruidong avatar May 26 '20 02:05 pruidong

QQ截图20200609093935 引入的路径中没有demo

yxdwind avatar Jun 09 '20 01:06 yxdwind

QQ截图20200609093935 引入的路径中没有demo

Done, it's has been fixed. Actually I remove demo codes about restservice, because of these code not clarity.

theonefx avatar Jun 24 '20 02:06 theonefx

Aliyun Java Initializr 有开源出来吗?

airclear avatar Jun 29 '20 06:06 airclear

gradle 项目 分层架构 里面module还是maven的pom文件 图片

caowenliang avatar Jun 29 '20 12:06 caowenliang

gradle 项目 分层架构 里面module还是maven的pom文件 图片

Copy that, I'll handle it.

theonefx avatar Jun 30 '20 01:06 theonefx

Could not find artifact com.alibaba.cola:cola-core:pom:2.0.0 in me (https://maven.aliyun.com/repository/central)

cn-src avatar Jul 02 '20 10:07 cn-src

Could not find artifact com.alibaba.cola:cola-core:pom:2.0.0 in me (https://maven.aliyun.com/repository/central)

me too

youngmkl avatar Jul 02 '20 13:07 youngmkl

Could not find artifact com.alibaba.cola:cola-core:pom:2.0.0 in me (https://maven.aliyun.com/repository/central)

sunzcdev avatar Jul 09 '20 05:07 sunzcdev

Could not find artifact com.alibaba.cola:cola-core:pom:2.0.0 in me (https://maven.aliyun.com/repository/central)

the COLA template has be updated;

theonefx avatar Jul 14 '20 07:07 theonefx

Could not find artifact com.alibaba.cola:cola-core:pom:2.0.0 in me (https://maven.aliyun.com/repository/central)

the COLA template has be updated;

theonefx avatar Jul 14 '20 07:07 theonefx

建议

能否自定义分层的module呢 一个应用 对应前台(front) 管理后台(admin) 以及共用(common)

foo-parent
    - front # 提供接口给H5
    - common # dao 和 DO
    - admin  # 管理后台接口

目前的分层 默认如下

    <modules>
        <module>demo-api</module>
        <module>demo-dao</module>
        <module>demo-manager</module>
        <module>demo-service</module>
        <module>demo-web</module>
        <module>start</module>
    </modules>

zhugw avatar Jul 14 '20 13:07 zhugw

建议

能否自定义分层的module呢 一个应用 对应前台(front) 管理后台(admin) 以及共用(common)

foo-parent
    - front # 提供接口给H5
    - common # dao 和 DO
    - admin  # 管理后台接口

目前的分层 默认如下

    <modules>
        <module>demo-api</module>
        <module>demo-dao</module>
        <module>demo-manager</module>
        <module>demo-service</module>
        <module>demo-web</module>
        <module>start</module>
    </modules>

Good idea, I will consider this suggestion.

theonefx avatar Jul 17 '20 01:07 theonefx

gradle, 分层架构 父项目是build.gradle 生成的子项目里面都是pom.xml

gundamff avatar Jul 24 '20 10:07 gundamff

能否在生成的时候指定发不到阿里云的私服呢,当然也可以是其他的私服

ghost avatar Aug 05 '20 01:08 ghost

能否在生成的时候指定发不到阿里云的私服呢,当然也可以是其他的私服

Good idea, I will consider this suggestion.

theonefx avatar Aug 10 '20 09:08 theonefx

应用架构选择 COLA 下载下来之后,start 模块的 pom 文件存在问题,缺少一级 plugin 节点

<plugins>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>repackage</id>
            <goals>
                <goal>repackage</goal>
            </goals>
            <configuration>
                <mainClass>com.aliyun.cola.demo.DemoApplication</mainClass>
            </configuration>
        </execution>
    </executions>
</plugins>

需要改成

<plugins>
   <plugin>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-maven-plugin</artifactId>
       <executions>
           <execution>
               <id>repackage</id>
               <goals>
                   <goal>repackage</goal>
               </goals>
               <configuration>
                   <mainClass>com.aliyun.cola.demo.DemoApplication</mainClass>
               </configuration>
           </execution>
       </executions>
   </plugin>
</plugins>

xkcoding avatar Aug 31 '20 09:08 xkcoding

应用架构选择 COLA 下载下来之后,start 模块的 pom 文件存在问题,缺少一级 plugin 节点

<plugins>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>repackage</id>
            <goals>
                <goal>repackage</goal>
            </goals>
            <configuration>
                <mainClass>com.aliyun.cola.demo.DemoApplication</mainClass>
            </configuration>
        </execution>
    </executions>
</plugins>

需要改成

<plugins>
   <plugin>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-maven-plugin</artifactId>
       <executions>
           <execution>
               <id>repackage</id>
               <goals>
                   <goal>repackage</goal>
               </goals>
               <configuration>
                   <mainClass>com.aliyun.cola.demo.DemoApplication</mainClass>
               </configuration>
           </execution>
       </executions>
   </plugin>
</plugins>

done

theonefx avatar Sep 14 '20 03:09 theonefx

【Bug Report】 Hi, one bug I have found while using Aliyun Java Initializr(https://start.aliyun.com/) to create Spring Boot project, here is the bug detail: 4DC2C2AB-9100-4E1B-B61E-635E05597DD0

GenshenWang avatar Sep 25 '20 10:09 GenshenWang

【Bug Report】 自动生成的application.properties中,spring.resources.static_locations应该改成spring.resources.static-locations

thinwind avatar Sep 29 '20 06:09 thinwind

【Bug Report】 自动生成的application.properties中,spring.resources.static_locations应该改成spring.resources.static-locations

done

theonefx avatar Oct 14 '20 01:10 theonefx

根目录能否加一个readme.md简要说明每个模块的作用

thc75 avatar Oct 17 '20 09:10 thc75

根目录能否加一个readme.md简要说明每个模块的作用

good idea

theonefx avatar Oct 21 '20 06:10 theonefx

高级选项中的项目描述,输入着文字光标就跳转到项目名称上去了!

youngledo avatar Oct 22 '20 07:10 youngledo

高级选项中的项目描述,输入着文字光标就跳转到项目名称上去了!

already fixed

theonefx avatar Nov 13 '20 04:11 theonefx

【Bug Report】 Hi, one bug I have found while using Aliyun Java Initializr(https://start.aliyun.com/) to create Spring Boot project, here is the bug detail: 4DC2C2AB-9100-4E1B-B61E-635E05597DD0

already fixed

theonefx avatar Nov 13 '20 04:11 theonefx

maven项目描述会中文乱码

mosence avatar Nov 19 '20 01:11 mosence