logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Spring Boot 设置静态资源访问

问题描述当使用Spring Boot来架设服务系统时,有时候也需要用到前端页面,当然就不可或缺地需要访问其他一些静态资源,比如图片、css、js等文件。那么如何设置Spring Boot网站可以访问得到这些静态资源,以及静态资源如何布局?解决方案这里引用stackoverflow网站的问题截图:[http://stackoverflow.com/questions/27381781/java-sp

【牛顿迭代逼近】求根号2的快速方法

如果要求根号2,比较快的方法有:1)二分法;2)牛顿迭代逼近法

【linux命令】查看和更新Linux系统时间

jk@wsn-ubuntu:~$ date2014年 07月 02日 星期三 09:25:22 CSTjk@wsn-ubuntu:~$ ntpdate time-a.nist.gov2 Jul 09:25:28 ntpdate[10929]: bind() fails: Permission deniedjk@wsn-ubuntu:~$ date2014年 07月 02日 星期三 09

#linux
Linux中杀掉特定名称的进程

以下命令是杀掉用grep匹配到特定名称的进程ps -ef|grep DeviceConnectionLimitTest |grep -v grep|cut -c 9-15|xargs kill -9

Python Reviewing Notes

# how to get help with python built-in functions1. dir# here a code of pythona = 'strings'dir(a)Then all attrs or functions of a as a string will be presented.2. help# help funti

#python
到底了