51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#F
Ubuntu 16.04安装FTP客户端filezilla
1、安装:sudoapt-getinstallfilezilla 参考:http://os.51cto.com/art/201103/247564.htm...
代码星球
·
2020-04-04
Ubuntu
16.04
安装
FTP
客户端
Ubuntu 16.04解决在虚拟终端(Ctrl+Alt+F1)下显示菱形中文乱码问题
在安装Ubuntu时,如果默认选择了中文,那么以后进去到虚拟终端就会出现菱形的中文乱码。其实这个是无解的,但是可以通过以下技巧去实现:1、把系统转成英文的sudogedit/etc/default/locale将内容改为:LANG=”en_US.UTF-8″LANGUAGE=”en_...
代码星球
·
2020-04-04
Ubuntu
16.04
解决
虚拟
终端
Ubuntu 16.04下FireFox安装Flash插件
下载:https://get.adobe.com/flashplayer/选择tar.gz包解压sudotarzxvfflash_player_npapi_linux.x86_64.tar.gz复制sudocplibflashplayer.so/usr/lib/firefox-addons/pluginssudocp-...
代码星球
·
2020-04-04
Ubuntu
16.04下
FireFox
安装
Flash
Windows 10+Ubuntu 16.04在MBR分区上安装双系统之后启动菜单的System Setup选项提示:can't find command "fwsetup"
背景:硬盘分区方式:MBR硬盘容量256,Windows100,Ubuntu156,其中主分区安装的是Windows,Ubuntu安装在逻辑分区上,文件系统为Ext4,整个Ubuntu就挂载在根目录/下,没有交换分区。安装方式不是使用UEFI。如果在Ubuntu的启动菜单上没有Windows10的启动项,那么一定是安装...
代码星球
·
2020-04-04
Windows
10+Ubuntu
16.04
MBR
区上
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
体系结构
简介
Spring MVC 4实现RESTFul WebServices的CRUD实例和使用RestTemplate进行请求(全注解形式配置Web和Filter)
在这篇文章中,我们将使用Spring4 MVC编写一个CRUD RESTful Web服务,写一个REST客户端RestTemplate来使用这些服务。我们也将利用外部客户端测试的服务。下面将展示核心代码,更详细的代码实现参照Maven示例工程!简单介绍RESTREST表示状态传输。这是一...
代码星球
·
2020-04-04
Spring
MVC
实现
RESTFul
WebServices
在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
SpringFox Swagger2注解基本用法
一切参数说明,参考官方API文档:http://docs.swagger.io/swagger-core/current/apidocs/index.html?io/swagger/annotations在实体和API注释这块,有些注释不一定在页面上表现,但是接口返回的数据上全部都有返回。Swagger2出自Sprin...
代码星球
·
2020-04-04
SpringFox
Swagger2
注解
基本
用法
Spring Boot中使用Swagger2生成RESTful API文档(转)
效果如下图所示:添加Swagger2依赖在pom.xml中加入Swagger2的依赖<!--https://mvnrepository.com/artifact/io.springfox/springfox-swagger2--><dependency><groupId>io.spr...
代码星球
·
2020-04-04
Spring
Boot
使用
Swagger2
生成
thymeleaf模板引擎基础使用(转)
刚好项目上用到这个模板引擎,记录以下基础用法。thymeleaf介绍简单说,Thymeleaf是一个跟Velocity、FreeMarker类似的模板引擎,它可以完全替代JSP。相比其他的模板引擎,它有如下三个极吸引人的特点:thymeleaf在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,...
代码星球
·
2020-04-04
thymeleaf
模板
引擎
基础
使用
Javascript控制回车键进行表单(form)提交(转)
一、采用钩子事件去捕获键盘事件有3个:keydown,keypress,keyup分别是按下,按着没上抬,上抬键盘。$(document).keyup(function(event){if(event.keyCode==13){$("#submit").trigger("click");}});推荐:keyup,防止笔...
代码星球
·
2020-04-04
Javascript
控制
回车
进行
表单
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中<mvc:annotation-driven />和<context:annotation-config />的区别分析
个人最简单的使用理解:<mvc:annotation-driven/>是管理静态资源的,比如静态页面,返回JSON这些。<context:annotation-config/>是管理注解的,比如@Controller这些。深入的解释:官方文档:https://spring.io/blog/200...
代码星球
·
2020-04-04
Spring
MVC
中和
区别
分析
Spring MVC-集成(Integration)-生成PDF示例(转载实践)
以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_pdf.htm说明:示例基于SpringMVC 4.1.6。以下示例显示如何使用SpringWebMVC框架生成PDF。首先,让我们使用EclipseIDE,并按照以下步骤使用SpringWe...
代码星球
·
2020-04-04
Spring
MVC-
集成
Integration
-生成
Spring MVC-表单(Form)标签-文件上传(File Upload)示例(转载实践)
以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_upload.htm说明:示例基于SpringMVC4.1.6。以下示例显示如何使用SpringWebMVC框架在表单中使用文件上传控件。首先,让我们使用EclipseIDE,并按照以下步骤使用Spri...
代码星球
·
2020-04-04
Spring
MVC-
表单
Form
标签
首页
上一页
...
1426
1427
1428
1429
1430
...
下一页
尾页
按字母分类:
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
其他