- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不想默认公开我的存储库,它看起来像 RepositoryRestConfiguration.disableDefaultExposure()
正是我想要的;但是我在拨打 /{respository/{id}
时收到 405 响应.
我已将存储库中的所有方法标记为已公开,并且据我所知,除 FindById
外,所有其他方法都可以正常工作。 .
@RepositoryRestResource(exported = true)
interface MyEntityRepository : PagingAndSortingRepository<MyEntity, Int> {
@RestResource(exported = true)
override fun findAll(sort: Sort): MutableIterable<MyEntity>
@RestResource(exported = true)
override fun findAll(pageable: Pageable): Page<MyEntity>
@RestResource(exported = true)
override fun <S : MyEntity?> save(entity: S): S
@RestResource(exported = true)
override fun findAll(): MutableIterable<MyEntity>
@RestResource(exported = true)
override fun deleteById(id: Int)
@RestResource(exported = true)
override fun deleteAll(entities: MutableIterable<MyEntity>)
@RestResource(exported = true)
override fun deleteAll()
@RestResource(exported = true)
override fun <S : MyEntity?> saveAll(entities: MutableIterable<S>): MutableIterable<S>
@RestResource(exported = true)
override fun count(): Long
@RestResource(exported = true)
override fun findAllById(ids: MutableIterable<Int>): MutableIterable<MyEntity>
@RestResource(exported = true)
override fun delete(entity: MyEntity)
@RestResource(exported = true)
override fun existsById(id: Int): Boolean
@RestResource(exported = true)
override fun findById(id: Int): Optional<MyEntity>
}
@Component
class SpringDataRestCustomization() : RepositoryRestConfigurerAdapter() {
override fun configureRepositoryRestConfiguration(config: RepositoryRestConfiguration?) {
config!!.disableDefaultExposure()
}
}
GET /myentities/1
cache-control: no-cache
postman-token: 3d310c2e-2e1c-4587-880d-cc2f79cbb9eb
user-agent: PostmanRuntime/7.2.0
accept: */*
host: localhost:8080
accept-encoding: gzip, deflate
HTTP/1.1 405
status: 405
allow: PUT,PATCH,DELETE,OPTIONS
x-content-type-options: nosniff
x-xss-protection: 1; mode=block
cache-control: no-cache, no-store, max-age=0, must-revalidate
pragma: no-cache
expires: 0
x-frame-options: DENY
content-length: 0
date: Fri, 27 Jul 2018 11:42:25 GMT
spring-data-releasetrain.version
一起使用设置为
Kay-SR9
.
findById
它正在寻找类型为
java.lang.Integer
的参数的方法但我的方法被定义为原始
int
; Kotlin 将 ID 类型参数设置为
java.lang.Integer
但是
int
的函数参数所以他们不匹配。
Warning:(13, 67) Kotlin: This class shouldn't be used in Kotlin. Use kotlin.Int instead.
:
@RepositoryRestResource(exported = true)
interface MyEntityRepository : PagingAndSortingRepository<MyEntity, java.lang.Integer> {
...
@RestResource(exported = true)
override fun findById(id: java.lang.Integer): Optional<MyEntity>
}
overrides
关键字重新添加进去,它将无法编译)。
@RepositoryRestResource(exported = true)
interface MyEntityRepository : PagingAndSortingRepository<MyEntity, Int?> {
...
@RestResource(exported = true)
fun findById(id: Int?): Optional<MyEntity>
}
最佳答案
@jebbench 的编辑解决了 GET /{entity}/{id}
的问题.另外,我必须这样做才能删除:
@RestResource(exported = true)
fun deleteById(id: Int?): Optional<MyEntity>
关于java - 尽管在使用 RepositoryRestConfiguration.disableDefaultExposure() 时公开了所有方法,但 405 方法不允许,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51557296/
例如 Form1 frm1 = new Form1(); TextBox tb = new TextBox(); frm1.Controls.Add(tb); 现在我不能说 f
我有一个日期过滤器,我已经在我的 View 中公开了它。我想让界面更加用户友好并加强它的外观。我不想选择日期,而是从以下选项中进行选择。 最后一天 上周 去年 全部 然后,这将过滤日期字段。这可能吗?
如何向用户公开我的用户控件组件之一的 ActualWidth 属性? 我找到了很多关于如何通过创建新的依赖属性和绑定(bind)来公开普通属性的示例,但没有关于如何公开像 ActualWidth 这样
Github 最近推出了项目功能。 当项目处于 repo 级别时,如果 repo 本身是公开的,那么任何人都可以访问这些项目。 但是,组织级别的项目仅对组织成员可见。 例如,https://githu
我想要从我的网络服务器访问 JavaScript 文件。 以便任何人都可以在其网站中访问和引用它。 e-g 假设 abcxyzserver.com 是我的网络服务器。 www.abcxyzserv
尝试使用curl命令上传到blob存储 curl --upload-file --url "https://.blob.core.windows.net//" 但不断收到“HTTP/1.1 404
我正在尝试获取 Canvas 的上下文,显然我收到错误Uncaught TypeError: Cannot call method 'getContext' of null 显然我在它初始化之前就得到
我正在对设置 HA 集群的解决方案进行故障排除。虽然我知道应用程序执行故障转移和故障回复所需的端口,但不知何故 dockerized 解决方案不起作用。我怀疑有一些我还不知道的端口。 目前,我的 EX
我试图在能够使用 Helm 运行的k8集群中设置Prometheus。当我使用外部IP将Prometheus-Server作为LoadBalancer服务公开时,访问仪表板。 当我尝试将此服务配置为C
我知道关于这个主题也有类似的问题,但我不完全确定他们正在解决同样的问题。所以要明确的是... 我有一个现有的类库,其中包含用于类型、业务逻辑和数据访问的命名空间。逻辑和数据访问命名空间中的类是静态的,
尝试使用curl命令上传到blob存储 curl --upload-file --url "https://.blob.core.windows.net//" 但不断收到“HTTP/1.1 404
1.)执行以下命令生成一个随机数,用于后面的步骤 NUMBER=$[ ( $RANDOM % 1000 ) + 1 ] echo $NUMBER 注意:将句子 your random number 替
类似这样的问题有很多,但仍然无法得到我真正想要的,而且它们都有一些与我不同的地方,那就是:我有一个 UserControl: 在名为UCProject 的类库项目中单独构建; UCProject 项目
我有一个这样的基类: public class BaseModalCommand { protected object m_commandArgument; protected i
给定以下 JQuery 插件。是否可以将变量“元素”公开给插件外部的 javascript?如果是这样,这是怎么做到的?对于此插件外部的 javascript,访问“元素”的语法是什么? (funct
我有两个使用 jhipster 创建的微服务。 (ms1 和 ms2) 我使用 AuthorizedFeignClient 在两个微服务之间进行通信。 ms1 有一些 DTO 类,用作 REST AP
我正在使用错误跟踪软件来报告网络浏览器中发生的任何错误,但我的生产站点上的代码已缩小。因此,调试几乎是不可能的(变量名被更改等)。 我想将完整的源映射文件投入生产,以便我可以调试这些错误,但在这样做时
我在 Kotlin 公开库中可以找到的所有 Material 都假定该表具有一个主标识列,因此在大多数示例中显示的实体继承了 IntEntity 抽象类。例如: class UserLocation(
我有一个类 (Capsule),它有很多 protected 方法 (30+)。这个想法是允许开发人员扩展此类并在类 (ImADev) 中使用 protected 方法,但将其留给开发人员将它们公开为
Tomcat 日志位置是: /apache/apache-tomcat-8.0.15/logs 允许通过浏览器访问这些日志的标准方法是什么? 为此启用 Tomcat 目录列表标准吗? 最佳答案 我曾在
我是一名优秀的程序员,十分优秀!