ELK 日志处理
评论(0) 浏览量(98)
Loki is another logging stack that seems to be lighter weighted than the ELK stack,没有docker用,elk / Loki  using sleuth and zippkinThese 3 are super heavy, the compressed archives are 500M big ......
总是自己开发登录页,果然还是,可以直接使用这个包:spring:     application:         name: app-config-center     security:   &nb ......
Unlimited Stars
评论(0) 浏览量(201)
#include <stdlib.h>  int m1(int *p){      printf("%d\n",*p);      return 0;  } int main() { ......
全家桶的springcloud,现在添加到kafka遇到的问题: kafka 总提示路径太长,放在磁盘根目录下, bin/windows/zooker-start.bat config/zookeeper.properties然后kafka, 在server.properties 位于config文件夹下, 找到那个 :9092 默认端口行注释bi ......
My mac mini m2 homebrew had corrupted, I had to fix it.I am having Java20 installed on Mac, to manage Java versions, I found materials, including fixing no remote repo, brew cask, tap, etc.For no orig ......
There are different ways to set up a microservice system.In China, there is the Alibaba way, using Nacos, Dubbo, Seata, Appolo, etc.There is also another way of using Springcloud-gateway, Openfeign, Z ......
The process of Multi Tenant in Spring Boot and JPA is to use the dynamic routing data source.For each tenant, there is a datasource property file.Could put all such files under a all tenants folder, w ......
on server "git init --bare"on local, "ssh-copy-id server_ip"git clone user@ssh_server_ip:/path/to/bare_repo;  git@ssh_server_ip:/username/projectname.git;local commit readme.m ......
Key takeaways:Press and Hold Shift at VM Ubuntu server start up,i.e. send ctrl+alt+delete to reboot from VM menuPress e and edit Ubuntu Grub scriptAt the end of the last line that starts with linux, a ......
关于bootstrap.yml和application.yml的优先级, bootstrap.yml较高, configclient需要添加到bootstrap.yml中配置中心主要是引用config server的pom, 添加enable config server, 配置config server的git 配置版本库地址;客户端中配置上服务器地址后,添加上刷新包,当需要刷新的时候,向api发 ......
pomapplication.yaml resource/mapper/UserMapper.xml4. UserMapper interface5. User Service7. AutoWired User Service8.  API
添加pomorg.springframework.bootspring-boot-starter-data-jpa2.3.1.RELEASE添加@Table( 注解会自动生成表结构。reload pom.xml, 添加
<div class="container"><div class="card">Hello card</div><div class="card">Hello card</div><div class="card">Hello card</ ......
所以要做的页面,主要是一个视频的页面,一个视频列表上面导航,然后下面左侧是一个专辑分类,然后右边是不同的视频封面,那么如果是随机上传的,可以没有专辑,专辑这个是隐藏的大概是,左侧是150px, 然后 ul li, logo, 右侧是宽度,视频是 float left,这里不用flex,好让这个能按顺序排列。上面还有一个搜索条。 先按西瓜视频的做一个页面。页面实体是 左侧就叫通用频道吧, ......
Chaoqichaoluo:https://v.qq.com/x/cover/h2jaajccqpca15e/r0045tqixun.html?ptag=11972 Chuwang:https://www.ixigua.com/6688904210311807495?logTag=9f017647965b48fbb2f9
目前看到,外键对性能的伤害比较大,而且开发起来这个完整性约束特别麻烦,如果都用事务,许多人不建议使用外键。JPA Hibernate禁止生成外键。mybatis还是jpa, jpa要改的太多,一会儿实体一会儿业务,mybatis使用view这种要灵活多变地多。所以需要数据完整性的部分,比如userService这里,可以用jpa, 而对于业务变动比较频繁,而访问比较要求性能的部分可以用m ......
好了。我已经搭了基本的springcloud,这个先放在一边。我自己的主站现在可以添加一下视频和图片的模块。主要将页面模板中取相关的视频专辑和图片专辑才好。这里这个页面的模板就先不添加导航了,只加一个返回首页链接;然后主要的逻辑就是链接video, 视频呢,打算用西瓜或者b站的视频引入,这么来的话,可能存的位置要用iframe作为视频和播放器的占位;可以先做一个页面,里面放一个空的西瓜的视频链接引 ......
上次写到springboot里面,这里还需要一些数据库的服务标注为springboot组件进行注入。这里看到flyway,这是一个类似于efcore的migration 组件, 管理mysql 的脚本。hystrix是一个进行请求时间超时时,返回结果的库。eureka需要集成,这里看下zookeeper或者consul进行服务注册与发现。zookeeper是一个单独的下载。下载后运行zookeep ......
springcloud是java的微服务方案,这里我就直接全用起来。这里依然选择java8, spring-boot 似乎是2.几的版本。首先,oauth使用jwt在spring-boot;然后, eureka server, 用来服务发现等; zookeeper;再然后, 服务注册使用eureka;再然后,使用zuul proxy server 配置路由和 ......
为了省事儿,不想码代码,自己的想法也少,我就使用了开源的一些项目。但是这些项目可能有些问题。就像现在用的这个jfinal的shop.看下这个框架,应该是支持session和cookie的。然后,使用活动记录的方式,看到的是,它的entity字段和方法分在两个地方。类似于领域模型,这里用的sql的方式。如今数据库都不建议设置外键。refs:https://blog.51cto.com/u_13294 ......