当前位置:  编程技术>综合
本页文章导读:
    ▪sonar 安装与配置(一)      首先 下载sonar :http://www.sonarsource.org/downloads/ 我下载的version是:3.41版本 接下来 安装mysql ,这个就不多说了 创建一个名为sonar的库: 创建完库以后分配权限,创建一个sonar用户并把这个用户的.........
    ▪java中使用队列(java.util.Queue)      转自:http://blog.csdn.net/guijava/article/details/3784658  在java5中新增加了java.util.Queue接口,用以支持队列的常见操作。该接口扩展了java.util.Collection接口。 Queue使用时要尽量避免Collection的add()和remov.........
    ▪Servlet托管Spring进行管理      Servlet托管Spring时, 1、重写servlet中的init()方法,在servlet中使用WebApplicationContext 获取bean对象: 如下: ArrivingShipsImpl asi; public void init() throws ServletException { super.init(); ServletCo.........

[1]sonar 安装与配置(一)
    来源: 互联网  发布时间: 2013-11-10

首先 下载sonar :http://www.sonarsource.org/downloads/

我下载的version是:3.41版本

接下来 安装mysql ,这个就不多说了

创建一个名为sonar的库:

创建完库以后分配权限,创建一个sonar用户并把这个用户的密码设置为soanr 拥有这个库的所有权限:



打开你下载的sonar安装包 找到conf文件夹下的sonar.properties文件





保存关闭,打开bin/windows-x86-32(这个根据你的系统环境自行处理),点击StartSonar



稍等一会儿,第一次启动需要创建表和初始化相关数据

看到上面的画面,说明你启动成功了,打开浏览器输入:http://localhost:9000

到这里,恭喜你安装完毕!

对于像我这样的草根屌丝英文的界面用起来肯定不爽了,那好下载soanr的中文插件

地址:http://docs.codehaus.org/display/SONAR/Plugin+Library

在这里有丰富的插件,自己慢慢看吧,以后有时间一一讲解它们的用途


插件也可以从系统本身的插件库进行安装,在系统配置里可以进行安装


将down下来的中文包放到*/sonar-3.4.1\extensions\plugins下边,如上图所示,然后重新启动即可


作者:frank0417 发表于2013-1-12 17:51:05 原文链接
阅读:20 评论:0 查看评论

    
[2]java中使用队列(java.util.Queue)
    来源: 互联网  发布时间: 2013-11-10

转自:http://blog.csdn.net/guijava/article/details/3784658 

在java5中新增加了java.util.Queue接口,用以支持队列的常见操作。该接口扩展了java.util.Collection接口。

Queue使用时要尽量避免Collection的add()和remove()方法,而是要使用offer()来加入元素,使用poll()来获取并移出元素。它们的优
点是通过返回值可以判断成功与否,add()和remove()方法在失败的时候会抛出异常。 如果要使用前端而不移出该元素,使用
element()或者peek()方法。
值得注意的是LinkedList类实现了Queue接口,因此我们可以把LinkedList当成Queue来用。
[java] view plaincopy
  • 小例子:   
  •   
  • /** 
  •  * 
  •  * @author Zang XT 
  •  */  
  • import java.util.Queue;  
  • import java.util.LinkedList;  
  • public class TestQueue {  
  •     public static void main(String[] args) {  

  •     
    [3]Servlet托管Spring进行管理
        来源:    发布时间: 2013-11-10
    Servlet托管Spring时,
    1、重写servlet中的init()方法,在servlet中使用WebApplicationContext 获取bean对象:
    如下:
    ArrivingShipsImpl asi;
    public void init() throws ServletException {          
            super.init();
            ServletContext servletContext = this.getServletContext();  
            WebApplicationContext ctx =    WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
            asi = (ArrivingShipsImpl)ctx.getBean("arrivingShipsImpl");
        }


    2、实现ApplicationContextAware接口的SpringConetextUtil类,利用回调方法,设置上下文对象,通过上下文对象获取bean对象

    @Component
    public class SpringContextUtil implements ApplicationContextAware{
    
    	private static ApplicationContext	applicationContext;
    
    	/**
    	 * 实现ApplicationContextAware接口的回调方法,设置上下文环境
    	 */
    	public void setApplicationContext(ApplicationContext applicationContext){
    		SpringContextUtil.applicationContext = applicationContext;
    	}
    
    	public static ApplicationContext getApplicationContext(){
    		return applicationContext;
    	}
    	/**
    	 * 获取对象
    	 */
    	public static Object getBean(String name) throws BeansException{
    		return applicationContext.getBean(name);
    	}
    }



    3、动态代理形式的:
    http://blog.csdn.net/yaerfeng/article/details/7368541

    思路:把servlet配置为spring的bean,就可以实现其他bean的注入,然后使用代理servlet来辅助配置和运行:

    一、代理servlet的写法:

    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.springframework.web.context.WebApplicationContext;
    import org.springframework.web.context.support.WebApplicationContextUtils;
    /**
     * HttpServlet 代理
     * @author lwei
     * @since 2011-03-17
     * @version 1.0
     */
    public class HttpServletProxy extends HttpServlet {
    
      /**
       * random serialVersionUID
       */
    
      private static final long serialVersionUID = -7208519469035631940L;
      Log logger = LogFactory.getLog(HttpServletProxy.class);
      private String targetServlet;
      private HttpServlet proxy;
      public void init() throws ServletException {
          this.targetServlet = getInitParameter("targetServlet");
          getServletBean();
          proxy.init(getServletConfig());
          logger.info(targetServlet + " was inited by HttpServletProxy  successfully......");
      }
    
      private void getServletBean() {
          WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
          this.proxy = (HttpServlet) wac.getBean(targetServlet);
      }
    
    
      @Override
      public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException, RuntimeException {
          proxy.service(request, response);      
     }
    
    
    
    }

    二、业务servlet的写法:
    import java.io.IOException;
    import javax.servlet.ServletException;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    /**
     * @author lwei
     */
    public class UserCheckServlet extends HttpServlet {
    
      /**
       * random serialVersionUID
       */
      private static final long serialVersionUID = 3075635113536622929L;
      private UserService userService;(UserService 是spring托管的bean,通过set方法注入)
      public void setUserService (UserService userService) {
          this.userService = userService;
      }
      public UserCheckServlet() {
          super();
      }
    
      public void init() throws ServletException {
          super.init();
      }
    
    
      @Override
      public void service(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse)
           throws ServletException, IOException, RuntimeException {
         ....
         ....
         userService.getUserByCode();(注入后bean的使用)
         ....
         ....
     }   
    }


    三、业务serlvet配置为spring的bean:
    <bean id="userCheckServlet"  />

    四、web.xml中业务servlet的配置:
    <servlet>
          <servlet-name>UserCheckProxy</servlet-name>
          <servlet-class>com.XXX.xxxx.web.HttpServletProxy</servlet-class>
         <init-param>
             <param-name>targetServlet</param-name>
             <param-value>userCheckServlet</param-value>(业务servlet配置为spring的bean时的名字)
         </init-param>
     </servlet>
     <servlet-mapping>
         <servlet-name>UserCheckProxy</servlet-name>
         <url-pattern>/UserCheck</url-pattern>
        </servlet-mapping>






    已有 0 人发表留言,猛击->>这里<<-参与讨论


    ITeye推荐
    • —软件人才免语言低担保 赴美带薪读研!—




        
    最新技术文章:
    ▪error while loading shared libraries的解決方法    ▪版本控制的极佳实践    ▪安装多个jdk,多个tomcat版本的冲突问题
    ▪简单选择排序算法    ▪国外 Android资源大集合 和个人学习android收藏    ▪.NET MVC 给loading数据加 ajax 等待loading效果
    ▪http代理工作原理(3)    ▪关注细节-TWaver Android    ▪Spring怎样把Bean实例暴露出来?
    ▪java写入excel2007的操作    ▪http代理工作原理(1)    ▪浅谈三层架构
    ▪http代理工作原理(2)    ▪解析三层架构……如何分层?    ▪linux PS命令
    ▪secureMRT Linux命令汉字出现乱码    ▪把C++类成员方法直接作为线程回调函数    ▪weak-and算法原理演示(wand)
    ▪53个要点提高PHP编程效率    ▪linux僵尸进程    ▪java 序列化到mysql数据库中
    ▪利用ndk编译ffmpeg    ▪活用CSS巧妙解决超长文本内容显示问题    ▪通过DBMS_RANDOM得到随机
    ▪CodeSmith 使用教程(8): CodeTemplate对象    ▪android4.0 进程回收机制    ▪仿天猫首页-产品分类
    ▪从Samples中入门IOS开发(四)------ 基于socket的...    ▪工作趣事 之 重装服务器后的网站不能正常访...    ▪java序列化学习笔记
    ▪Office 2010下VBA Addressof的应用    ▪一起来学ASP.NET Ajax(二)之初识ASP.NET Ajax    ▪更改CentOS yum 源为163的源
    ▪ORACLE 常用表达式    ▪记录一下,AS3反射功能的实现方法    ▪u盘文件系统问题
    ▪java设计模式-观察者模式初探    ▪MANIFEST.MF格式总结    ▪Android 4.2 Wifi Display核心分析 (一)
    ▪Perl 正则表达式 记忆方法    ▪.NET MVC 给loading数据加 ajax 等待laoding效果    ▪java 类之访问权限
    ▪extjs在myeclipse提示    ▪xml不提示问题    ▪Android应用程序运行的性能设计
    ▪sharepoint 2010 自定义列表启用版本记录控制 如...    ▪解决UIScrollView截获touch事件的一个极其简单有...    ▪Chain of Responsibility -- 责任链模式
    ▪运行skyeye缺少libbfd-2.18.50.0.2.20071001.so问题    ▪sharepoint 2010 使用sharepoint脚本STSNavigate方法实...    ▪让javascript显原型!
    ▪kohana基本安装配置    ▪MVVM开发模式实例解析    ▪sharepoint 2010 设置pdf文件在浏览器中访问
    ▪spring+hibernate+事务    ▪MyEclipse中文乱码,编码格式设置,文件编码格...    ▪struts+spring+hibernate用jquery实现数据分页异步加...
    ▪windows平台c++开发"麻烦"总结    ▪Android Wifi几点    ▪Myeclipse中JDBC连接池的配置
    ▪优化后的冒泡排序算法    ▪elasticsearch RESTful搜索引擎-(java jest 使用[入门])...    ▪MyEclipse下安装SVN插件SubEclipse的方法
    ▪100个windows平台C++开发错误之七编程    ▪串口转以太网模块WIZ140SR/WIZ145SR 数据手册(版...    ▪初识XML(三)Schema
    ▪Deep Copy VS Shallow Copy    ▪iphone游戏开发之cocos2d (七) 自定义精灵类,实...    ▪100个windows平台C++开发错误之八编程
    ▪C++程序的内存布局    ▪将不确定变为确定系列~Linq的批量操作靠的住...    ▪DIV始终保持在浏览器中央,兼容各浏览器版本
    ▪Activity生命周期管理之三——Stopping或者Restarti...    ▪《C语言参悟之旅》-读书笔记(八)    ▪C++函数参数小结
    ▪android Content Provider详解九    ▪简单的图片无缝滚动效果    ▪required artifact is missing.
    ▪c++编程风格----读书笔记(1)    ▪codeforces round 160    ▪【Visual C++】游戏开发笔记四十 浅墨DirectX教程...
    ▪【D3D11游戏编程】学习笔记十八:模板缓冲区...    ▪codeforces 70D 动态凸包    ▪c++编程风格----读书笔记(2)
    ▪Android窗口管理服务WindowManagerService计算Activity...    ▪keytool 错误: java.io.FileNotFoundException: MyAndroidKey....    ▪《HTTP权威指南》读书笔记---缓存
    ▪markdown    ▪[设计模式]总结    ▪网站用户行为分析在用户市场领域的应用
     


    站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3