简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
以下操作为root用户权限。操作需求:将主机名localhost.localdomain修改为master1、修改/etc/sysconfig/network文件,命令:[root@localhost ~]# vi /etc/sysconfig/network修改内容为:NETWORKING=yesHOSTNAME=master2、修改/etc/hosts文件,命令:[root@localhost
可以通过以下三种方式加载spring容器,实现bean的扫描与管理:1、 ClassPathXmlApplicationContext:从类路径中加载ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring-context.xml");context.start();2
easyui在页面布局中引入外部的jsp页面,如header.jsp或left.jsp,避免出现页面混乱有两个方式:1、两个jsp中不能有页头,除了编码声明外,直接div;2、或者布局引入的时候,用ifame作为容器,用iframe引入header.jsp或left.jsp;
1、先来一段异常看看:No provider available for the service16:05:25.755 [localhost-startStop-1] WARNo.s.w.c.s.XmlWebApplicationContext - Exception encountered during context initialization - cancelling refresh
1、@Configuration标注在类上,相当于把该类作为spring的xml配置文件中的,作用为:配置spring容器(应用上下文)package com.test.spring.support.configuration;@Configurationpublic class TestConfiguration {public TestConfiguration(){
1、CountDownLatch:一个同步工具类,它允许一个或多个线程一直等待,直到其他线程的操作执行完后再执行。2、ThreadPoolExecutor/ExecutorService:线程池,使用线程池可以复用线程,降低频繁创建线程造成的性能消耗,同时对线程的创建、启动、停止、销毁等操作更简便。3、使用场景举例:年末公司组织团建,要求每一位员工周六上午8点到公司门口集合,统一乘坐公司所租大巴
1、产生的问题:maven项目执行单元测试可以正常执行,但是执行maven命令test,则报一下异常:org.apache.maven.plugins:maven-compiler-plugin:2.5.1:testCompile (default-testCompile) on project support: Compilation failure: Compilation failure:[
按照水平居中、垂直居中、行内元素、块级元素等条件进行组合获取效果水平居中:行内元素解决方案只需要把行内元素包裹在一个属性display为block的父层元素中,并且把父层元素添加如下属性即可:.parent {text-align:center;}水平居中:块状元素解决方案.item {/* 这里可以设置顶端外边距 */margin: 10px auto;}水平居中