SpringBoot项目部署到linux系统相关问题
- linux tomcat日志错误Cannot run without an instance id & java.net.UnknownHostException
- 解决方案:vi 编辑 /etc/hosts文件,将当前服务器主机名加入127.0.0.1这一行即可
- 获取服务器服务器主机名方法:命令行输入hostname
@Autowired默认按类型装配(这个注解是属业spring的),默认情况下必须要求依赖对象必须存在,如果要允许null值,可以设置它的required属性为false,如:@Autowired(required=false) ,如果我们想使用名称装配可以结合@Qualifier注解进行使用,如下:
1 | @Autowired() @Qualifier("baseDao") |
@Resource 是JDK1.6支持的注解,默认按照名称进行装配,名称可以通过name属性进行指定,如果没有指定name属性,当注解写在字段上时,默认取字段名,按照名称查找,如果注解写在setter方法上默认取属性名进行装配。当找不到与名称匹配的bean时才按照类型进行装配。但是需要注意的是,如果name属性一旦指定,就只会按照名称进行装配。只不过注解处理器我们使用的是Spring提供的,是一样的,无所谓解耦不解耦的说法,两个在便利程度上是等同的。
1 | @Resource(name="baseDao") |
##SpringBoot注解使用
1 | @SpringBootApplication |
1 | Spring配置文件 |
@Autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。 通过 @Autowired的使用来消除 set ,get方法。在使用@Autowired之前,我们对一个bean配置起属性时,是这用用的
1 | <property name="属性名" value=" 属性值"/> |
具体例子:
UserRepository.java
1 | 1 package com.proc.bean.repository; |
这里定义了一个UserRepository接口,其中定义了一个save方法
1 | package com.proc.bean.repository; |
1 | <!-- springboot组件--> |
1 | <!-- mybatis/spring包 --> |
Bootstrap中文网
Bootstrap-table中文api
Bootstrap-table官网
bootstrap/css/bootstrap.min.css
bootstrap-table/src/bootstrap-table.css
- 行内编辑
文档地址
bootstrap3-editable/css/bootstrap-editable.css
bootstrap/js/bootstrap.min.js
bootstrap-table/src/bootstrap-table.js
bootstrap-table/src/extensions/filter-control/bootstrap-table-filter-control.js
bootstrap-table/src/extensions/toolbar/bootstrap-table-toolbar.jshttps://cdn.bootcss.com/x-editable/1.5.1/bootstrap3-editable/js/bootstrap-editable.min.js
bootstrap-table/src/extensions/editable/bootstrap-table-editable.js
- 中文包
bootstrap-table/locale/bootstrap-table-zh-CN.min.js
可在html配置,或者js配置(本文html配置)