#F

Ubuntu 16.04安装FTP客户端filezilla

1、安装:sudoapt-getinstallfilezilla 参考:http://os.51cto.com/art/201103/247564.htm...

Ubuntu 16.04解决在虚拟终端(Ctrl+Alt+F1)下显示菱形中文乱码问题

在安装Ubuntu时,如果默认选择了中文,那么以后进去到虚拟终端就会出现菱形的中文乱码。其实这个是无解的,但是可以通过以下技巧去实现:1、把系统转成英文的sudogedit/etc/default/locale将内容改为:LANG=”en_US.UTF-8″LANGUAGE=”en_...

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-...

Windows 10+Ubuntu 16.04在MBR分区上安装双系统之后启动菜单的System Setup选项提示:can't find command "fwsetup"

背景:硬盘分区方式:MBR硬盘容量256,Windows100,Ubuntu156,其中主分区安装的是Windows,Ubuntu安装在逻辑分区上,文件系统为Ext4,整个Ubuntu就挂载在根目录/下,没有交换分区。安装方式不是使用UEFI。如果在Ubuntu的启动菜单上没有Windows10的启动项,那么一定是安装...

Spring Framework体系结构简介

说明:以下转自Spring官方文档,用的版本为4.3.11版本。一、引用官方文档2.2.1核心集装箱所述核心容器由以下部分组成spring-core, spring-beans,spring-context,spring-context-support,和spring-expression(弹簧表达式语言)模...

Spring MVC 4实现RESTFul WebServices的CRUD实例和使用RestTemplate进行请求(全注解形式配置Web和Filter)

在这篇文章中,我们将使用Spring4 MVC编写一个CRUD RESTful Web服务,写一个REST客户端RestTemplate来使用这些服务。我们也将利用外部客户端测试的服务。下面将展示核心代码,更详细的代码实现参照Maven示例工程!简单介绍RESTREST表示状态传输。这是一...

在Spring MVC和Spring Boot中使用thymeleaf模板

SpringMVC:POM:<!--thymeleaf模板--><!--https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf--><dependency><groupId>org.thymeleaf</...

SpringFox Swagger2注解基本用法

一切参数说明,参考官方API文档:http://docs.swagger.io/swagger-core/current/apidocs/index.html?io/swagger/annotations在实体和API注释这块,有些注释不一定在页面上表现,但是接口返回的数据上全部都有返回。Swagger2出自Sprin...

Spring Boot中使用Swagger2生成RESTful API文档(转)

效果如下图所示:添加Swagger2依赖在pom.xml中加入Swagger2的依赖<!--https://mvnrepository.com/artifact/io.springfox/springfox-swagger2--><dependency><groupId>io.spr...

thymeleaf模板引擎基础使用(转)

刚好项目上用到这个模板引擎,记录以下基础用法。thymeleaf介绍简单说,Thymeleaf是一个跟Velocity、FreeMarker类似的模板引擎,它可以完全替代JSP。相比其他的模板引擎,它有如下三个极吸引人的特点:thymeleaf在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,...

Javascript控制回车键进行表单(form)提交(转)

一、采用钩子事件去捕获键盘事件有3个:keydown,keypress,keyup分别是按下,按着没上抬,上抬键盘。$(document).keyup(function(event){if(event.keyCode==13){$("#submit").trigger("click");}});推荐:keyup,防止笔...

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...

Spring MVC中<mvc:annotation-driven />和<context:annotation-config />的区别分析

个人最简单的使用理解:<mvc:annotation-driven/>是管理静态资源的,比如静态页面,返回JSON这些。<context:annotation-config/>是管理注解的,比如@Controller这些。深入的解释:官方文档:https://spring.io/blog/200...

Spring MVC-集成(Integration)-生成PDF示例(转载实践)

以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_pdf.htm说明:示例基于SpringMVC 4.1.6。以下示例显示如何使用SpringWebMVC框架生成PDF。首先,让我们使用EclipseIDE,并按照以下步骤使用SpringWe...

Spring MVC-表单(Form)标签-文件上传(File Upload)示例(转载实践)

以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_upload.htm说明:示例基于SpringMVC4.1.6。以下示例显示如何使用SpringWebMVC框架在表单中使用文件上传控件。首先,让我们使用EclipseIDE,并按照以下步骤使用Spri...
首页上一页...14261427142814291430...下一页尾页