Results 22 comments of EightMonth

spring boot container set server.port is 8080,not 0 。why take 0?

org.springframework.cloud.bus.BusAutoConfiguration @EventListener( classes = {RemoteApplicationEvent.class} ) public void acceptLocal(RemoteApplicationEvent event) { if (**this.serviceMatcher.isFromSelf(event)** && !(event instanceof AckRemoteApplicationEvent)) { if (log.isDebugEnabled()) { log.debug("Sending remote event on bus: " + event); }...

I'm sorry for not describing the problem clearly because of my poor English.Next, I will describe the problem with the help of Google Translate。(Source language: Chinese) Step 1: If there...

I want to explain that when you get the ${server. port} configuration item, it does not match the spring life cycle. It should not be obtained at EnvironmentPostProcessor, because it...

![image](https://github.com/jeecgboot/jeecg-boot/assets/23272421/c22e78bd-0bd6-4225-93a4-efdd1b007044) 未复现该问题,请更新最新版代码后,参考文档运行

此PR已修复 https://github.com/jeecgboot/jeecg-boot/pull/5848

jar分离打包部署文档:https://help.jeecg.com/java/publish/jarlib.html docker部署方案请参考官方文档:https://help.jeecg.com/java/setup/dockerset/soft.html 官方文档中,并未提供分离大包部署方案的docker方案,如果使用默认的dockerfile打包,无法将lib目录打包进入镜像,需要修改dockerfile 把lib目录使用COPY命令把lib目录复制进入docker镜像打包即可

What you said is very instructive, but unfortunately, the Jeecg open source team is not good at security engineering, so we can only provide basic security protection. Also, because Jeecg...

jeecg暂不支持私有部署企业微信的对接

插一句嘴,一:微服务没错,但是不要过度微服务。二:微服务划分,个人觉得吧,第一看体量,如果没有多少万级的体量,微服务划分,无非在炫技而已。第二看业务复杂度,如果一个用户服务,总共也就只需要那么十几个接口,会员服务两个接口,积分服务两个接口,需要划分三个服务么,我想不需要吧。第三看团队人数,如果一个团队只有两三个人,需要去维护十几个服务的代码,是否合理,再者说,20个人的团队在一个分支上折腾,合代码耗费了大量时间又是否合理,建议从实际问题考虑微服务代码工程的设计。 Part || 可以看下jeecg-boot-starter,这其实是个典型的微服务划分的仓库,如果觉得看懂了,再进一步看下spring cloud的微服务划分。