#包配置

Kali配置网卡静态信息

临时配置ipifconfigeth0up//端口启用ifconfigeth0down//端口关闭ifconfigeth0192.168.1.10//只修改ip地址ifconfigeth0192.168.1.10/24或者ifconfigeth01.1.1.1netmask255.0.0.0临时修改路由route//查看...

查看linux系统配置(centos/redhat)

一:查看cpumore/proc/cpuinfo|grep"modelname"grep"modelname"/proc/cpuinfo如果觉得需要看的更加舒服grep"modelname"/proc/cpuinfo|cut-f2-d: 二:查看内存grepMemTotal/proc/meminfogrepM...

yum 配置

1、配置yum本地源           #mount/dev/cdrom/mnt/#vim/etc/yum.repos.d/rhel-source.repo 1[rhel-source] ...
代码星球 ·2020-06-13

用python修改haproxy配置文件

需求:   当用户输入域名的时候,显示出来下面的记录   当用户需要输入添加纪录的时候,添加到你需要的那个域名下面globallog127.0.0.1local2daemonmaxconn256log127.0.0.1local2infodefaultslog...

Mysql5.7版本编译安装及配置

  配置yum安装方式1、配置本地yum源1vim/etc/yum.repos.d/rhel-source.repo2[rhel-source]3name=RedHatEnterpriseLinux$releasever-$basearch-Source4baseurl=file:///mnt5en...

Datetimepicker配置参数

jquery的datetimepicker时间控件除了样式有点不太美观,功能性还是相当强大的。在正常情况下input的type应该设置为"text",可点击又可输入(mask,enterLikeTab要在type="text"时使用);我个人选择时间时不太赞同支持输入,如果输入会有时间格式错误的出现;所以这里我就把in...
代码星球 ·2020-06-12

通过Spring配置文件中bean中的property赋值

基本数据类型赋值-通过spring配置文件中bean中的property扩展-以此方式可以通过配置为连接数据的属性赋值1、如果是基本数据类型,可以通过setter方法为对象中的属性设置初始值,应用:可以把以前写dbc的东西写进去2、如果属性的类型不是基本类型或String ,可以使用引用的方式为对象赋值(be...

Spring定时器注解配置

spring-task.xml<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema...

Spring定时器XML配置

spring-task.xml<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema...
代码星球 ·2020-06-12

Spring定时器多定时任务配置

spring-task.xml<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema...

hibernate4配置文件hibernate.cfg.xml配置详解

<?xmlversion="1.0"encoding="UTF-8"?>2<!DOCTYPEhibernate-configurationPUBLIC3"-//Hibernate/HibernateConfigurationDTD3.0//EN"4"http://hibernate.sourcefor...

spring配置文件详解

spring配置文件是用于指导Spring工厂进行Bean生产、依赖关系注入(装配)及Bean实例分发的"图纸"。JavaEE程序员必须学会并灵活应用这份"图纸"准确地表达自己的"生产意图"。Spring配置文件是一个或多个标准的XML文档,applicationContext.xml是Spring的默认配置文件,当容...
代码星球 ·2020-06-12

spring aop expression支持多个表达式配置

<!--配置那些类的方法进行事务管理--><aop:config><aop:pointcutid="allServiceMethod"expression="execution(*com.cms.sys.service.*.*(..))"/><aop:advisoradvice...

mybatis配置mapperLocations多个路径

<propertyname="mapperLocations"><array><value>classpath*:/mybatis-config.xml</value><value>classpath*:/com/**/sqlmap-*.xml</val...

读取配置文件参数

配置文件代码: java代码:try{Propertiesprop=newProperties();//读取属性文件horizon.propertiesStringparams=request.getSession().getServletContext().getRealPath("/")+"WEB-INF...
代码星球 ·2020-06-12
首页上一页...139140141142143...下一页尾页