整合log4j
在resources下建立log4j.properties
複製時要把每一行後面的空格去除
log4j.rootlogger=info,console,file
在pom.xml
去除springboot的logging,新增log4j,因為自帶的logging不起效果
springboot下的log4j的版本最新1.3.8,如果你的springboot的parent版本過高,那在在新增log4j自己版本
1.pom.xml匯入aop依賴
org.springframework.boot
spring-boot-starter-aop
2.切面類
@aspect
@component
public class weblogaspect
@before("weblog()")
public void dobefore(joinpoint joinpoint) throws throwable
} @afterreturning(returning = "ret", pointcut = "weblog()")
public void doafterreturning(object ret) throws throwable
}
spring boot整合日誌
在pom檔案中新增以下依賴 日誌 org.springframework.boot groupid spring boot starter thymeleaf artifactid dependency 新增完成以後可以在啟動類中進行測試 enablejpaauditing 使用jpa自動賦值 en...
SpringBoot第五課 整合日誌
spingboot框架預設使用slf4j抽象層和logback實現,這裡slf4j是日誌門面,是一種抽象,不是日誌的具體實現,具體實現是logback。詳細可看 1.pom引入日誌依賴 org.springframework.boot spring boot starter logging 配置指定...
學習日誌 springboot整合JPA
1.編寫實體類 entity 告訴spring這是乙個實體類 table 之地你和哪個表對映。不寫則預設是user,即實體類名的小寫。指定 name public class user 3.配置檔案編寫 spring datasource driver class name com.mysql.jd...