在过去的几天里,我看到很多对我拥有的域名的POST请求命中了以下路径:
/ct/v1/sct-gossip
/ct/v1/sct-feedback
/.well-known/ct/v1/sct-feedback
/.well-known/ct/v1/sth-pollination
/.well-known/ct/v1/collected-sct-feedback
/.well-known/ct/v1/sct-gossip
/topleveldir/subdir/research-feedback
Run Code Online (Sandbox Code Playgroud)
这个人试图做一些可疑的事吗?
我发现以下文件表明这可能与证书审核员有关,尽管我不确定是什么!我的所有网站都面向提供SSL证书的Cloudflare,所以我真的希望Cloudflare能够处理任何此类请求.
https://tools.ietf.org/html/draft-ietf-trans-gossip-00
任何想法将不胜感激:-)
我使用Spring的SimpleJdbcInsert类来创建实体 - 例如:
final SimpleJdbcInsert insert = new SimpleJdbcInsert(dataSource).withTableName("abc");
insert.execute(new BeanPropertySqlParameterSource(abc));
Run Code Online (Sandbox Code Playgroud)
是否有一些相当于此类进行更新?例如,假设我们正在处理单列主键,下面的内容将是一个方便的接口:
final SimpleJdbcUpdate update = new SimpleJdbcUpdate(dataSource).withTableName("abc").withIdColumn("abcId");
update.execute(new BeanPropertySqlParameterSource(abc));
Run Code Online (Sandbox Code Playgroud)
Spring是否在某处提供了这种开箱即用的功能?
谢谢Jay