Родной набор результатов запроса при загрузке пружины псевдо-столбец не виден
Ниже приведен код, который извлекает таблицу формы набора данных, называемую "ледяной" формой mysqlDB . проблема в том, что я вижу IceCreamModel{id=101, description='vanilla', price=10, mulfactor=2} . но не удалось просмотреть столбец "total" psudo "при выполнении кода.
public interface IceCreamRepository extends jpaRepository<IceCreamModel,Integer> {
@Query(value = "SELECT id, description,price, mulfactor, price * mulfactor as 'total' FROM ice WHERE id=101",nativeQuery = true)
List<IceCreamModel> getMul();
}
@Autowired
private IceCreamRepository iceCreamRepository;
public static void main(String[] args) {
SpringApplication.run(DesignPatternsApplication.class, args);
@Override
public void run(String... args) throws Exception {
getMul();
}
private void getMul() {
List<IceCreamModel> list=iceCreamRepository.getMul();
list.forEach(System.out::println);
}
@Сущность
открытый класс IceCreamModel реализует Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy= GenerationType.AUTO)
private int id;
private String description;
private int price;
private int mulfactor;
}