java beans specification 9 customization When a user is composing an application in an application builder we want to allow them tocustomize the appea ...
分类:
编程语言 时间:
2020-11-30 15:28:01
阅读次数:
7
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.login1"> <application ...
分类:
其他好文 时间:
2020-11-30 15:27:13
阅读次数:
5
1.多配置文件,其中application.properties中的spring.profiles.active能够灵活的切换使用环境 application.properties spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix ...
分类:
编程语言 时间:
2020-11-26 15:24:02
阅读次数:
14
1.在application.properties中添加如下内容 server.port=8888 spring.mvc.servlet.path=/test 2.访问127.0.0.1:8888/test/hello ...
分类:
编程语言 时间:
2020-11-26 15:04:09
阅读次数:
8
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.login1"> <application ...
分类:
其他好文 时间:
2020-11-26 15:01:33
阅读次数:
6
新建validator.js,内容如下,参考补充: const valid = { REG_PHONE: /^[1]([3-9])[0-9]{9}$/, checkNull(rule, value, callback, message, flag = true) { if (isNullOrEmpt ...
分类:
其他好文 时间:
2020-11-25 12:29:42
阅读次数:
4
firewalld的富规则可以定义更复杂强大的防火墙规则语法:fiewall-cmd[--permanent]--add-rich-rule="richrule"其中富规则的结构如下:1,一般规则结构rule[source][destination]service|port|protocol|icmp-block|icmp-type|masquerade|forward-port|source-p
分类:
其他好文 时间:
2020-11-24 12:17:08
阅读次数:
9
WSGI(Python Web Server Gateway Interface) 为 Web Server 和 Python Web Application 之间提供了标准的数据通道. 是 Python 界的 一个广泛的可用的 WEB API 规范, 使 web server 提供更加规范的 AP ...
分类:
编程语言 时间:
2020-11-23 12:07:14
阅读次数:
9
tomcat7 - Changing default welcome-page for spring-boot application deployed as a war - Stack Overflow https://stackoverflow.com/questions/26057995/ch ...
分类:
编程语言 时间:
2020-11-23 11:59:09
阅读次数:
7
使用下列正则替换时,IP没有生效。 new_ip=172.16.2.21 sed -i 's/172.16.2.20/$new_ip/' ./java_api/config/application.yml 解决:把正则中的$new_ip,使用单引号引起来:'$new_ip',即: sed -i 's ...
分类:
其他好文 时间:
2020-11-21 12:25:40
阅读次数:
7