V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  frank1256  ›  全部回复第 13 页 / 共 21 页
回复总数  413
1 ... 5  6  7  8  9  10  11  12  13  14 ... 21  
2022-08-16 15:58:51 +08:00
回复了 frank1256 创建的主题 程序员 关于能不能结婚的对错问题!大家理性评价
@libook 6 年,大学同班到现在
?没明白你表达的意思,你的意思是,自定义配置加载类吗?那就自定义 starter 就行了,exclude 默认的 starter 。
我遇到过的
1 、nginx 代理 /A 到服务 A ,但是 A 内部需要 403 跳转,redirect 时候会丢了 /A 的前缀。
2 、nginx 的 location 匹配,主要是正则表达式的使用
3 、log 日志排查技巧,比如查前访问最多的前 10ip 地址
4 、ssl 配置
5 、如何解决前端程序的跨域问题
6 、上传文件大小控制
2022-08-11 09:35:18 +08:00
回复了 dxatgp02 创建的主题 Java Java 对象里为什么要用 get set?
@dxatgp02 作用域,你写的自己的业务代码,没有问题。如果你是 spring 这样的开源框架,你就要控制好属性的作用域,例如 spring 提供给了你一个类,只给你构造方法可以修改属性,不提供 get ,set 。这样你是没有权限去改他的属性的,限制你的操作,更多的是防止人为操作导致报错。其次是,赋值属性的时候,经常需要校验参数的。如果写成 public ,就没有这些限制了。当然有些简单场景写 public 也没问题
2022-08-09 09:17:27 +08:00
回复了 U2FSDGVK 创建的主题 职场话题 求建议, 22 届,小微企业该不该去?
过来人给你建议,如果你学历好走大厂校招,如果你学历不好,技术好。走大厂内推。如果学历不好,技术一般,找普通公司做互联网产品的,toC 的最好,一样可以得到锻炼。一两年后一样可以去大厂。不要去做政府项目,外包项目,传统项目。
2022-08-08 09:26:54 +08:00
回复了 justincnn 创建的主题 问与答 对于一个普通的办公人员,实在没理由停留在 x86 的 win 了
你知道多少单位用的 ie6 ,7 ,8 吗
2022-08-03 15:03:16 +08:00
回复了 frank1256 创建的主题 程序员 mac ssh 远程 报错额
@tairan2006 我不要密钥额,单纯的想输入账号密码登录的
2022-08-03 15:02:49 +08:00
回复了 frank1256 创建的主题 程序员 mac ssh 远程 报错额
@xmai 额,(base) zero@ZerodeMacBook-Pro ~ % ssh root@localhost -vvv
OpenSSH_8.6p1, LibreSSL 2.8.3
debug1: Reading configuration data /Users/zero/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 21: include /etc/ssh/ssh_config.d/* matched no files
debug1: /etc/ssh/ssh_config line 54: Applying options for *
debug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/Users/zero/.ssh/known_hosts'
debug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/Users/zero/.ssh/known_hosts2'
debug1: Authenticator provider $SSH_SK_PROVIDER did not resolve; disabling
debug1: Connecting to localhost port 22.
debug1: Connection established.
debug1: identity file /Users/zero/.ssh/id_rsa type 0
debug1: identity file /Users/zero/.ssh/id_rsa-cert type -1
debug1: identity file /Users/zero/.ssh/id_dsa type -1
debug1: identity file /Users/zero/.ssh/id_dsa-cert type -1
debug1: identity file /Users/zero/.ssh/id_ecdsa type -1
debug1: identity file /Users/zero/.ssh/id_ecdsa-cert type -1
debug1: identity file /Users/zero/.ssh/id_ecdsa_sk type -1
debug1: identity file /Users/zero/.ssh/id_ecdsa_sk-cert type -1
debug1: identity file /Users/zero/.ssh/id_ed25519 type -1
debug1: identity file /Users/zero/.ssh/id_ed25519-cert type -1
debug1: identity file /Users/zero/.ssh/id_ed25519_sk type -1
debug1: identity file /Users/zero/.ssh/id_ed25519_sk-cert type -1
debug1: identity file /Users/zero/.ssh/id_xmss type -1
debug1: identity file /Users/zero/.ssh/id_xmss-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_8.6
kex_exchange_identification: read: Connection reset by peer
Connection reset by ::1 port 22
2022-08-03 13:05:15 +08:00
回复了 frank1256 创建的主题 程序员 mac ssh 远程 报错额
@ZeroClover 重开过了
2022-08-03 13:04:44 +08:00
回复了 frank1256 创建的主题 程序员 mac ssh 远程 报错额
@darkengine 我就是要连本机测试一下,其他机器来连,一样的错
2022-08-03 13:04:17 +08:00
回复了 frank1256 创建的主题 程序员 mac ssh 远程 报错额
@wjfz 有的
2022-07-28 14:20:40 +08:00
回复了 frank1256 创建的主题 程序员 nginx redirect 302 问题
@q1angch0u
absolute_redirect 我要的正好是 off 😂
2022-07-27 13:55:57 +08:00
回复了 jamel 创建的主题 程序员 寻找 ddd 知友
今年上头非要整 ddd ,找了一个项目硬着头皮 ddd 去写。很烦,也很觉得没什么意义。也很难写的下去,各种概念。
但是中途我发现自己代码有问题,进行少量重构的时候,能感觉到如果不按 ddd 的思想去写,代码改动量很大。“领域专家”这个东西很重要。
2022-07-27 09:04:58 +08:00
回复了 Cola98 创建的主题 程序员 关于对容器开发的理解
里面包括,dashboard ,编排,部署。啥都有。java 开发 go 开发都可以。还是平台 web 服务。背后也是通过 api 调的
2022-07-27 09:04:02 +08:00
回复了 Cola98 创建的主题 程序员 关于对容器开发的理解
阿里云或者腾讯云里面都有一个在线的,一键建容器集群的,在线点吧点吧,就能有一个高可用的 k8s 集群。开发这个功能就是容器开发。
2022-07-22 15:47:03 +08:00
回复了 frank1256 创建的主题 程序员 spring rest template 在 kubernetes time out
@chendy 请求已经抓出来了"I/O error on GET request for \"http://178.104.163.72:31300/users/list\": Read timed out; nested exception is java.net.SocketTimeoutException: Read timed out",
我直接在容器里 curl http://178.104.163.72:31300/users/list 是能访问的
2022-07-22 10:55:35 +08:00
回复了 jooks 创建的主题 Java 请教个问题,背压(backpressure)是如何体现在 Webflux 的呢?
这个问题我也想知道,落实到代码的话,调用的是
public interface Subscription {
public void request(long n);
public void cancel();
}
的 request 方法。我理解的应该是在内部代码层面。你是控制不了其他服务给你发 http 的速度的。
2022-07-21 09:34:47 +08:00
回复了 frank1256 创建的主题 程序员 限制性股票激励有啥用
@Vincent103 是这样的
2022-07-20 16:06:23 +08:00
回复了 frank1256 创建的主题 程序员 限制性股票激励有啥用
@justfindu 要半价买的,要是未来股价跌到半价一下,我就亏了?
1 ... 5  6  7  8  9  10  11  12  13  14 ... 21  
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   1528 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 28ms · UTC 16:33 · PVG 00:33 · LAX 08:33 · JFK 11:33
♥ Do have faith in what you're doing.