会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
LQT
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2018年10月19日
@interface注解类、 @Target:注解的作用目标 @Retention @Configuration @Bean @JsonIgnore
摘要: @Target(ElementType.TYPE) //接口、类、枚举、注解 @Target(ElementType.FIELD) //字段、枚举的常量 @Target(ElementType.METHOD) //方法 @Target(ElementType.PARAMETER) //方法参数 @T
阅读全文
posted @ 2018-10-19 14:33 9102_Struggle
阅读(469)
评论(0)
推荐(2)
编辑
Springboot结构
摘要:
阅读全文
posted @ 2018-10-19 10:37 9102_Struggle
阅读(144)
评论(0)
推荐(1)
编辑
2018年10月15日
Mysql根据多个条件删除数据时报错问题
摘要: 今天用mySql写了一个根据两个条件删除表的sql语句 如下 这时报错 的语法错误。 后来百度各种方法都没有实现 终于在https://dev.mysql.com/doc/refman/5.7/en/delete.html找到解决办法 这样,问题完美解决。
阅读全文
posted @ 2018-10-15 19:01 9102_Struggle
阅读(3154)
评论(0)
推荐(2)
编辑
2018年9月12日
vue+element-ui分页和删除组件的抽出
摘要: MyTable.vue组件页面 <template> <div> <el-table :data="tableData" :default-sort="{prop:tableProp , order: tableOrder}" @sort-change="changes" border> <el-t
阅读全文
posted @ 2018-09-12 16:49 9102_Struggle
阅读(680)
评论(0)
推荐(1)
编辑
2018年8月31日
用Springboot写一个只有一个条件的复杂查询
摘要: 在dao实现层或者manager层写 default List<BbwBarrage> findByEnable(int enable) {return this.findAll(new Specification<BbwBarrage>() {@Overridepublic Predicate t
阅读全文
posted @ 2018-08-31 11:34 9102_Struggle
阅读(1082)
评论(2)
推荐(2)
编辑
2018年8月29日
Springboot The requested profile "pom.xml" could not be activated because it doesn't not exists
摘要: 头一次写springboot项目,打成war包时,pom.xml也都配置了,网上查了很多资料说是maven环境和java环境的问题,但是看了后没有发现什么问题,删了maven下的.m2maven库再重载也没有什么卵用, 后来在项目上右击 -->propreties -->maven 点击Pestor
阅读全文
posted @ 2018-08-29 10:35 9102_Struggle
阅读(351)
评论(0)
推荐(1)
编辑
2018年8月22日
springboot配置路径
摘要: 在application.properties中配置静态资源和静态页的访问路径, springboot默认访问静态资源路径为:spring,resources.static-locations=classpath:/META-INF/resources,classpath:/resources/,c
阅读全文
posted @ 2018-08-22 12:15 9102_Struggle
阅读(239)
评论(0)
推荐(1)
编辑
vuex
摘要: vuex相当于java中的一个公共的父类,里面有state(存放公共的属性) 基本语法: 可以看出:更改state的数据并显示在组件中,有几个步骤:1. 在mutations选项里,注册函数 函数里面装逻辑代码。2.在组件里,this.$store.commit('change',payload)
阅读全文
posted @ 2018-08-22 11:45 9102_Struggle
阅读(204)
评论(0)
推荐(1)
编辑
2018年8月17日
@MappedSuperclass的作用
摘要: 在实体类映射到数据库的时候有些字段是每个实体类都可以用到的,比如id,createTime 等等,则这时候继承一个父类,父类BaseEntity中定义几个属性,用BaseEntity中的@MappedSuperclass我们可以将该实体类BaseEntity当成基类实体,它不会隐射到数据库表,但继承
阅读全文
posted @ 2018-08-17 09:40 9102_Struggle
阅读(349)
评论(0)
推荐(1)
编辑
2018年8月16日
springboot新建项目遇到Whitelabel Error Page
摘要: 在ecplise上新建了个springboot,项目的入口在项目的main方法,如果再建一个包再去建一个controller类,比如main方法在com.test包下的main.java 而新建的controller在com.demo下,那么访问新建的controller时就会报Whitelabel
阅读全文
posted @ 2018-08-16 17:21 9102_Struggle
阅读(258)
评论(0)
推荐(1)
编辑
上一页
1
2
3
4
5
6
下一页
公告