You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose We have 3 classes
public abstract class Shape { { @id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
}
public class Circle extends Shape {
private double radius;
}
public class Book {
private Shape shape;
}
How can i find Radius using Specification written for BOOK
The text was updated successfully, but these errors were encountered:
Suppose We have 3 classes
public abstract class Shape { {
@id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
}
public class Circle extends Shape {
private double radius;
}
public class Book {
private Shape shape;
}
How can i find Radius using Specification written for BOOK
The text was updated successfully, but these errors were encountered: