关于synchronized 的问题

发布于 2021-11-11 18:51:12 字数 4090 浏览 758 评论 5

最近对发送mail部分的程序进行改造,原来好好的,修改后发现web服务起来之后只能发送一封,就发布出去了。

只是改造了一下同步块,是在想不明白,大家帮忙看看吧~

原来好用的程序:

public class MailSendHandler implements Runnable {

	private static MailSendHandler me = null;
	/**
       * Log4j Logger对象创建
       */
	private static Logger logger = null;

	/**
	 *  关闭默认构造函数
	 */
	private MailSendHandler() {
	}

	/**
	 * 唯一实例化接口
	 * @return
	 */
	public static MailSendHandler getInstance() {
		if (null == me) {
			synchronized (MailSendHandler.class) {
				if (null == me) {
		                    me = new MailSendHandler();
		                    if (logger == null) {
		                        logger = Logger.getLogger(MailSendHandler.class);
		                    }
				}
			}
		}
		return me;
	}

	/**
	 * 全局静态变量
	 */
	/** 待发送邮件队列*/
	private static LinkedQueue<QueueValue> linkedQueue;
	/** 线程是否在进行中*/
	private static boolean isRun = false;
	/**
	 * 邮件发送主程序
	 * @param args
	 */
	private static void main(String[] args) {

		boolean bForever = true;
		QueueValue queueValue = null;
		Mail email = null;
		MailSender mailSender = null;
		try {
			while (bForever) {
				// 如果队列中没有对象了,则不再执行
				if(linkedQueue.isEmpty()){
					break;
				} else {
					queueValue = linkedQueue.get();
					email = queueValue.getMail();
					mailSender  = queueValue.getMailSender();
					mailSender.send(email);
				}
			}
		} catch (Exception e) {
		    logger.error(e);
		} finally {
			isRun = false;
		}
	}

	/**
	 * 线程启动接口
	 */
	public void run() {
		MailSendHandler.main(null);
	}


	/**
	 * 用户接口,发送邮件的监听器
	 * @param mailSenderP
	 * @param email
	 */
	public void listen(QueueValue queueValue) {
		if (linkedQueue == null) {
			synchronized (LinkedQueue.class) {
				if (null == linkedQueue) {
					linkedQueue = new LinkedQueue<QueueValue>();	
				}
			}
		}
		
		linkedQueue.put(queueValue);
		
		// 如果线程正在运行中则不在另起线程。
		if (!isRun) {
			Thread t = new Thread(me);
			t.start();
			isRun = true;
		}
	}
}

修改后,不好用的source:

public class MailSendHandler implements Runnable {

	private static MailSendHandler me = null;
	/**
       * Log4j Logger对象创建
       */
      private static Logger logger = null;

	/**
	 *  关闭默认构造函数
	 */
	private MailSendHandler() {
	}

	/**
	 * 唯一实例化接口
	 * @return
	 */
	public static MailSendHandler getInstance() {
		if (null == me) {
			synchronized (MailSendHandler.class) {
				if (null == me) {
		                    me = new MailSendHandler();
		                    if (logger == null) {
		                        logger = Logger.getLogger(MailSendHandler.class);
		                    }
				}
			}
		}
		return me;
	}

	/**
	 * 全局静态变量
	 */
	/** 待发送邮件队列*/
	private static LinkedQueue<QueueValue> linkedQueue;
	/** 线程是否在进行中*/
	private static boolean isRun = false;
	/**
	 * 邮件发送主程序
	 * @param args
	 */
	private static void main(String[] args) {

		boolean bForever = true;
		QueueValue queueValue = null;
		Mail email = null;
		MailSender mailSender = null;
		try {
			while (bForever) {
				synchronized (LinkedQueue.class) {
					// 如果队列中没有对象了,则不再执行
					if(linkedQueue.isEmpty()){
						break;
					} else {
						queueValue = linkedQueue.get();
						email = queueValue.getMail();
						mailSender  = queueValue.getMailSender();
						mailSender.send(email);
					}
				}
			}
		} catch (Exception e) {
			 logger.error(e);
		} finally {
			isRun = false;
		}
	}

	/**
	 * 线程启动接口
	 */
	public void run() {
		MailSendHandler.main(null);
	}


	/**
	 * 用户接口,发送邮件的监听器
	 * @param mailSenderP
	 * @param email
	 */
	public void listen(QueueValue queueValue) {
		
		if (linkedQueue == null) {
			synchronized (LinkedQueue.class) {
				if (null == linkedQueue) {
					linkedQueue = new LinkedQueue<QueueValue>();	
				}
		        linkedQueue.put(queueValue);
			}
		}
		
		// 如果线程正在运行中则不在另起线程。
		if (!isRun) {
			Thread t = new Thread(me);
			t.start();
			isRun = true;
		}
	}
}

主要修改部分就是在操作队列的时候加入同步线程锁而已,为什么会导致只能一次好用呢?

PS:修改点在main方法和listen方法。

真是奇怪~

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

坚持沉默 2021-11-16 04:17:19

引用来自#5楼“烈冰”的帖子

看不出改了哪里-_-||

建议看一下包java.util.concurrent里的class,用这些api处理同步。以前写过一个多线程的爬虫就是用里面的class,好用

长安忆 2021-11-16 03:05:52

看不出改了哪里-_-||

建议看一下包java.util.concurrent里的class,用这些api处理同步。以前写过一个多线程的爬虫就是用里面的class,好用

反目相谮 2021-11-16 02:17:13

 你只不过是希望得到一个在多线程环境下的单例而已 可以看看单例模式的多线程环境下的实现吧  我对这个也是不甚了解的~

把昨日还给我 2021-11-14 13:40:12

这个确实是程序bug,修改如下:

        if (linkedQueue == null) {
            synchronized (LinkedQueue.class) {
                if (null == linkedQueue) {
                    linkedQueue = new LinkedQueue<QueueValue>();
                }
            }
        }
        
        linkedQueue.put(queueValue);
        
        // 如果线程正在运行中则不在另起线程。
        if (!isRun) {
            Thread t = new Thread(me);
            t.start();
            isRun = true;
        }

如果这部分修改后,整体的synchronized 操作是不是就没有问题了呢?

或者说,这样设计是否合理呢?

虐人心 2021-11-12 18:05:30

你listen 改完后,只有在

 

  1.   if (linkedQueue == null) {  
  2.             synchronized (LinkedQueue.class) {  
  3.                 if (null == linkedQueue) {  
  4.                     linkedQueue = new LinkedQueue<QueueValue>();    
  5.                 }  
  6.                 linkedQueue.put(queueValue);  
  7.             }  
  8.         }  

linkedQueue被第一次实例化的时候才调用put操作.... 你的queue里应该只有一个值吧

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文