springboot
阁下大名
这个作者很懒,什么都没留下…
展开
-
springboot用aop做日志
说明:在每一个接口访问的时候记录访问日志,用户的信息,参数信息,执行时间,执行时长和返回的数据在ssm框架中我们都知道用注解做aop只需要在配置文件中增加一行配置即可,如下:<aop:aspectj-autoproxy />但在springboot中做aop只要引进依赖,默认spring.aop.auto=ture,也就是说相当于在启动类中添加了@EnableAspectJAutoProxy注解当我们要做CGLIB来实现AOP的时候,需要增加配置spring.aop.proxy-ta转载 2020-11-13 17:02:00 · 339 阅读 · 0 评论 -
springboot访问jsp页面变下载
加上如下依赖即可:<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</group原创 2020-11-21 09:59:24 · 1374 阅读 · 0 评论 -
springboot设置默认首页
添加配置:@Configurationpublic class WebMvcConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/").setViewName("forward:public/index.html"); }}注意原创 2020-11-20 12:50:11 · 648 阅读 · 2 评论 -
springboot配置拦截器
如下代码即可完成@Configurationpublic class LoginConfig implements WebMvcConfigurer { @Override public void addInterceptors(InterceptorRegistry registry) { InterceptorRegistration interceptorRegistration = registry.addInterceptor(new AdminInter原创 2020-11-10 17:00:07 · 492 阅读 · 1 评论 -
springboot自带的定时任务
springboot有默认的定时任务,只需要在启动类中添加@EnableScheduling注解即可开启定时任务功能@SpringBootApplication@EnableSchedulingpublic class InspectionApplication { public static void main(String[] args) { SpringApplication.run(InspectionApplication.class, args); }原创 2020-11-10 16:26:23 · 1313 阅读 · 0 评论 -
Error creating bean with name ‘objectMapperConfigurer‘
springboot做aop时报错信息:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'objectMapperConfigurer' defined in class path resource [springfox/documentation/spring/web/SpringfoxWebMvcConfiguration.class]: BeanPostProcessor原创 2020-11-09 14:34:16 · 12963 阅读 · 5 评论 -
Could not load JDBC driver class [com.mysql.jdbc.Driver]
使用springboot获取数据源的时候出现这个错误错误原因:是因为没有导入mysql的依赖解决:去maven官网将mysql的依赖复制粘贴到pom文件中ok保存重启就好了<!-- mysql依赖 --><dependency> <groupId>mysql</groupId> <artifactId>...原创 2019-03-21 19:49:55 · 5635 阅读 · 0 评论