《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>

猜你喜欢

转载自blog.csdn.net/weixin_40835745/article/details/109282829