[问题]spring boot 报错 NumberFormatException

楼主: think12381   2019-12-12 22:32:57
请问一下各位大大 我目前正在学习Java spring boot
开发环境是采 用 idea
目的是要采用网页去DB里面捞资料出来
都会产生以下错误
Failed to convert value of type 'java.lang.String' to required type 'long';
nested exception is java.lang.NumberFormatException: For input string: "books"
看起来是说 自串不能转long
但是我这样要怎么对到 html去
google许久还是查不到解法
请教各位大神
谢谢
以下是局部代码
实体
===========================================
@Entity
public class Book2 {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
private String name;
private int status;
private String author;
private String description;
===============================================
controller
@GetMapping("/booklist/{id}")
public String ListBook(@PathVariable("id") long id, Model model){
Optional<Book2> book2 = bookService.getOne(id);
if(book2 == null){
book2 = Optional.of(new Book2());
}
model.addAttribute("book", book2);
System.out.println(book2.get().getName()+ " "
+
book2.get().getId() + " "+
book2.get().getAuthor()+ " "+
book2.get().getDescription()+ " "+
book2.get().getStatus());
return "books";
=============================================================================
book repository
public interface BookRepository extends JpaRepository<Book2,Long> {
==============================================================================
service
@Service
public class BookService {
@Autowired
private BookRepository bookRepository;
===========================================================================
books.html
<body>
<div class = "container" style="max-width: 700px">
<h2 class = "page-header" style="margin-top: 50px">书单内容</h2>
<div class="well">
<p>
<strong> 作者 </strong>
<span th:text = "${book.author}"> bb
</span>
</p>
<p>
<strong> 描述 </strong>
<span th:text = "${book.description}"> cc </span>
</p>
<p>
<strong> 书名 </strong>
<span th:text = "${book.name}"> aa </span>
</p>
<p>
<strong> 状态 </strong>
<span th:text = "${book.status}"> dd </span>
</p>
</div>
</div>
作者: ssccg (23)   2019-12-12 23:09:00
你是连什么网址?
楼主: think12381   2019-12-13 06:57:00
localhost:8080/booklist/44是我在db要抓的资料
作者: kohmiho (kohmiho)   2019-12-13 08:20:00
感觉像dbo 字段没对准
作者: ssccg (23)   2019-12-13 09:19:00
你是不是用成@RestController?
楼主: think12381   2019-12-13 09:48:00
entity 字段 顺序 要一致?
作者: tw11509 (John-117)   2019-12-13 11:11:00
有stack的话,一起给出来,比较好帮你确认问题在哪里而且你book2 == null写法有问题,已经用optional了,先去看看optional的用法你放入model的是optional物件,不是book2物件,要先从optional去get出来你的pathvariable应该不是带入books吧
作者: bloodrance (血色兰斯(角度))   2019-12-24 16:24:00
.findById(id).orElse(null); < Service那边要写个没记错当时我用Spring 2.0看1.5的教学时发生过不过你的写法我还是觉得怪诡异的 spring boot版本是?
作者: chi972121 (沉默之语)   2019-12-25 20:57:00
Optional有isPeesent*isPresent
作者: wxv1990 (人生活着要快乐!)   2018-03-08 15:58:00
book2.isEmpty

Links booklink

Contact Us: admin [ a t ] ucptt.com