51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#ME
Ubuntu 16.04安装Meld文件比对工具替代Beyond Compare
BeyondCompare是商业软件,不建议使用,下载地址:http://www.scootersoftware.com/download.php。下载完直接运行或者通过dpkg安装即可。其实Linux下文本比较工具很多,比如Meld。安装:sudoapt-getinstallmeld想要运行直接在命令行中输入meld...
代码星球
·
2020-04-04
Ubuntu
16.04
安装
Meld
文件
Ubuntu 16.04切换/home中文目录为英文目录
其实这个方法是具有技巧性的,不建议使用。1、先转换成英文sudogedit/etc/default/locale将内容改为:LANG=”en_US.UTF-8″LANGUAGE=”en_US:en”再运行sudolocale-gen然后重启,此时界面上会出现一个对话框提示...
代码星球
·
2020-04-04
目录
Ubuntu
16.04
切换
home
Sublime Text 3配置支持Markdown编辑
继上一篇http://www.cnblogs.com/EasonJim/p/7119304.html文章安装好之后,对Markdown支持需要做如下处理:1、按下【Ctrl】+【Shift】+【P】打开快速菜单,键入“pcip”,选择第一项2、回车,等待数据更新,完成后会主动显示软件列表。如果没...
代码星球
·
2020-04-04
Sublime
Text
配置
支持
Markdown
Ubuntu 16.04安装Sublime Text3
1、安装:sudoadd-apt-repositoryppa:webupd8team/sublime-text-3sudoapt-getupdatesudoapt-getinstallsublime-text-installer2、卸载:sudoapt-getremovesublime-text-installer3、...
代码星球
·
2020-04-04
Ubuntu
16.04
安装
Sublime
Text3
Ubuntu 16.04安装uGet替代迅雷,并在Chrome中设置为默认下载器
uGet是采用aria2作为下载后端,所以两个软件都必须同时安装。1、安装uGetsudoadd-apt-repositoryppa:plushuang-tw/uget-stablesudoapt-getupdatesudoapt-getinstalluget2、安装aria2sudoadd-apt-repositor...
代码星球
·
2020-04-04
Ubuntu
16.04
安装
uGet
替代
Ubuntu 16.04添加启动图标到Dash Home中
一、添加图标:图标信息在以下两处地方:/usr/share/applications~/.local/share/applications(用户独立配置存放地方,是个隐藏文件夹)图标信息文件以.desktop结尾,内容示例如下:[DesktopEntry]Version=2.2.3Name=AndroidStudioE...
代码星球
·
2020-04-04
Ubuntu
16.04
添加
启动
图标
Ubuntu 16.04安装Chrome浏览器
一、先有一个hosts能访问Google参考:http://www.cnblogs.com/EasonJim/p/5999060.html二、安装方法有两种,如下所示:1、下载deb包(推荐)#下载wgethttps://dl.google.com/linux/direct/google-chrome-stable_c...
代码星球
·
2020-04-04
Ubuntu
16.04
安装
Chrome
浏览器
Spring Framework体系结构简介
说明:以下转自Spring官方文档,用的版本为4.3.11版本。一、引用官方文档2.2.1核心集装箱所述核心容器由以下部分组成spring-core, spring-beans,spring-context,spring-context-support,和spring-expression(弹簧表达式语言)模...
代码星球
·
2020-04-04
Spring
Framework
体系结构
简介
MySQL Workbench查看和修改表字段的Comment值
查看:选择单个表->【右键】->【TableInspector】再选择Columns选项卡即可,把表格拉倒最后一列。编辑:选择单个表->【右键】->【AlterTable】...
代码星球
·
2020-04-04
MySQL
Workbench
查看
修改
字段
在Spring MVC和Spring Boot中使用thymeleaf模板
SpringMVC:POM:<!--thymeleaf模板--><!--https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf--><dependency><groupId>org.thymeleaf</...
代码星球
·
2020-04-04
Spring
MVC
Boot
使用
thymeleaf
thymeleaf模板引擎基础使用(转)
刚好项目上用到这个模板引擎,记录以下基础用法。thymeleaf介绍简单说,Thymeleaf是一个跟Velocity、FreeMarker类似的模板引擎,它可以完全替代JSP。相比其他的模板引擎,它有如下三个极吸引人的特点:thymeleaf在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,...
代码星球
·
2020-04-04
thymeleaf
模板
引擎
基础
使用
Spring Boot使用thymeleaf模板时报异常:template might not exist or might not be accessible by any of the configured Template Resolvers
错误如下:templatemightnotexistormightnotbeaccessiblebyanyoftheconfiguredTemplateResolvers解决方法:1、确定模板是否在默认templates文件夹里面,并且路径要和返回的View名字一致。2、newModelAndView("/log/lo...
代码星球
·
2020-04-04
might
not
Spring
Boot
使用
Spring MVC-控制器(Controller)-可参数化视图控制器(Parameterizable View Controller )示例(转载实践)
以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_parameterizableviewcontroller.htm说明:示例基于SpringMVC4.1.6。以下示例显示了如何使用SpringWebMVC框架使用多操作控制器的Parameteriza...
代码星球
·
2020-04-04
控制器
Controller
Spring
MVC-
参数
Spring MVC-控制器(Controller)-参数方法名称解析器(Parameter Method Name Resolver )示例(转载实践)
以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_parametermethodnameresolver.htm说明:示例基于SpringMVC 4.1.6。以下示例显示如何使用SpringWebMVC框架使用多操作控制器的参数方法名称解析器...
代码星球
·
2020-04-04
Spring
MVC-
控制器
Controller
参数
Spring MVC-控制器(Controller)-属性方法名称解析器(Properties Method Name Resolver )示例(转载实践)
以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_propertiesmethodnameresolver.htm说明:示例基于SpringMVC4.1.6。以下示例显示如何使用SpringWebMVC框架使用多操作控制器的属性方法名称解析方法。Mul...
代码星球
·
2020-04-04
Spring
MVC-
控制器
Controller
属性
首页
上一页
...
521
522
523
524
525
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他