Libing Chen
Libing Chen
@ice1000 I have migrated project structure to [intellij-platform-plugin-template](https://github.com/JetBrains/intellij-platform-plugin-template), and it's easy to develop plugin. The second step is to improve new syntax support, and I think you know Zig BNF...
@ice1000 https://github.com/ice1000/intellij-zig/pull/39
Bring it back https://github.com/ice1000/intellij-zig/pull/39
@scottfrederick Now I use jbang to write some scripts for Spring Boot App, scripts and app share some same configuration, such as database url etc, and https://github.com/cdimascio/dotenv-java is very friendly...
yes, I use normal key style form in .env file, and my .env file content as following: ``` nick=linux_china management.server.port=9999 ``` then I create link for .env with `ln -s...
@scottfrederick I mad a mistake about .env file format, and key should be uppercase like following: ``` KEY=xxx DATABASE_URL=xxxxx ``` Some frameworks use multi .env files like Spring Boot profile,...
> If anyone's still interested in using `.env` as another properties file, for me it works by adding > > ```ini > # Development properties (also used for docker-compose) >...
有样例代码吗? 可以参考一下。
I will take a look at https://baomidou.com/ and give you feedback
我还不能确定,从编程角度来看,MyBatis-Plus看起来和JPA非常像, 如果你想写SQL,不想写XML,那么MyBatis-Plus和JPA非常像,一些接口也都差不多,当然MyBatis-Plus可能有一些JPA没有的功能,但是Spring JPA也有一些高级特性。 目前Spring JPA已经支持R2DBC啦, https://spring.io/projects/spring-data-r2dbc 在某种程度上满足了用户不想写SQL、XML的需求。 如果有特别的特性,这里留言一下,可以考虑和MyBatis Plus合作一下,或者到MyBatis Plus宝地留言一下,支持Reactive特性。 :)