我可以从 post 中排除字段并发出请求但在 spring-data-rest 中公开它吗?
Can I exclude field from post and put requests but expose it in get in spring-data-rest?
我有一个模型,里面有这样的东西
public class Foo {
private int foo;
private int bar;
public setFoo(int foo) {
bar = someFunction(foo);
}
}
所以我希望用户能够看到栏,但不会直接影响它。这可以实现吗?
我想你需要的是 getter for bar
.
public int getBar() {
return bar;
}
所以可见但不可改变。
我有一个模型,里面有这样的东西
public class Foo {
private int foo;
private int bar;
public setFoo(int foo) {
bar = someFunction(foo);
}
}
所以我希望用户能够看到栏,但不会直接影响它。这可以实现吗?
我想你需要的是 getter for bar
.
public int getBar() {
return bar;
}
所以可见但不可改变。