《SpringBoot实战》读书笔记

《SpringBoot实战》读书笔记:

最近在学习SpringBoot实战这本书,由于SpringBoot版本更新,书中的代码有些已经不可用,本文罗列了前三章需要更新的代码


第二章:

第35页html代码,input中没有添加id属性,需要加id属性与label标签进行绑定

<form method="POST" >
    <label for="title">Title:</label>
    <input  id="title" type="text" name="title" size="50"/><br/>
    <label for="author">Author:</label>
    <input  id="author" type="text" name="author" size="50"/><br/>
    <label for="isbn">ISBN:</label>
    <input id="isbn" type="text" name="isbn" size="15"/><br/>
    <label id="description" for="description">Description:</label><br/>
    <textarea  name="description" cols="80" rows="5">
 </textarea><br/>
    <input type="submit"/>
</form>

第三章:

第45页,Java代码中 JpaRepository的findOne()方法已经过时

 @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
        auth.userDetailsService(new UserDetailsService() {
                    @Override
                    public UserDetails loadUserByUsername(String username)
                            throws UsernameNotFoundException {
                        return readerRepository.findById(username).get();
                    }
                });

第63页,图片应该放在static/image下面

<html>
 <div class="errorPage">
 <span class="oops">Oops!</span><br/>
 <img th:src="@{/image/missingPage.png}"></img>
 <p>There seems to be a problem with the page you requested
 (<span th:text="${path}"></span>).</p>

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值