<?xml version="1.0" encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="https://nozaki.me/roller/roller-ui/styles/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom">
    <title type="html">Kohei Nozaki&apos;s blog (Comments)</title>
    <id>https://nozaki.me/roller/kyle/feed/comments/atom</id>
    <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/" />
    <link rel="self" type="application/atom+xml" href="https://nozaki.me/roller/kyle/feed/comments/atom" />
        <updated>2024-05-01T08:28:13+00:00</updated>
    <generator uri="http://roller.apache.org" version="5.2.0">Apache Roller</generator>
            <entry>
        <id>https://nozaki.me/roller/kyle/entry/customizing-roller-s-gaurav-theme#comment-1619929744030</id> 
        <title type="html">Re: Customizing Roller&apos;s Gaurav theme</title>
        <author><name>mjordan79</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/customizing-roller-s-gaurav-theme#comment-1619929744030"/>
        <published>2021-05-02T04:29:04+00:00</published>
        <updated>2021-05-02T04:29:04+00:00</updated> 
        <content type="html">
&lt;p&gt;Hello, how do you make those wonderful wraps around the code and these styled paragraphs?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1597370500670</id> 
        <title type="html">Re: Lean example of Tomcat 8 + Guice 4 + Jersey 2.19</title>
        <author><name>Patrick</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1597370500670"/>
        <published>2020-08-14T02:01:40+00:00</published>
        <updated>2020-08-14T02:01:40+00:00</updated> 
        <content type="html">
&lt;p&gt;I&apos;ve been stressing over getting a Jersey webapp spun up, and your project finally got me where I wanted to be.&lt;/p&gt;


&lt;p&gt;The only problem I had was that I was getting NoClassDefFoundError: javax/xml/bind/JAXBException.  It turns out that it&apos;s because I&apos;m using Java 11, which seems to have removed necessary modules for JAX-B.&lt;/p&gt;


&lt;p&gt;I found the fix here: &lt;a href=&quot;https://stackoverflow.com/a/43574427&quot;&gt;https://stackoverflow.com/a/43574427&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;So, if you&apos;d like to update your code to be compatible with Java 11, simply add these two dependencies:&lt;/p&gt;


&lt;p&gt;&amp;lt;!-- API, java.xml.bind module --&amp;gt;&lt;br/&gt;
&amp;lt;dependency&amp;gt;&lt;br/&gt;
    &amp;lt;groupId&amp;gt;jakarta.xml.bind&amp;lt;/groupId&amp;gt;&lt;br/&gt;
    &amp;lt;artifactId&amp;gt;jakarta.xml.bind-api&amp;lt;/artifactId&amp;gt;&lt;br/&gt;
    &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;&lt;br/&gt;
&amp;lt;/dependency&amp;gt;&lt;/p&gt;


&lt;p&gt;&amp;lt;!-- Runtime, com.sun.xml.bind module --&amp;gt;&lt;br/&gt;
&amp;lt;dependency&amp;gt;&lt;br/&gt;
    &amp;lt;groupId&amp;gt;org.glassfish.jaxb&amp;lt;/groupId&amp;gt;&lt;br/&gt;
    &amp;lt;artifactId&amp;gt;jaxb-runtime&amp;lt;/artifactId&amp;gt;&lt;br/&gt;
    &amp;lt;version&amp;gt;2.3.2&amp;lt;/version&amp;gt;&lt;br/&gt;
&amp;lt;/dependency&amp;gt;&lt;/p&gt;


&lt;p&gt;Again, thanks so much!&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-8#comment-1587430335332</id> 
        <title type="html">Re: Lean example of Tomcat 8 + Guice 4</title>
        <author><name>Fred</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-8#comment-1587430335332"/>
        <published>2020-04-21T00:52:15+00:00</published>
        <updated>2020-04-21T00:52:15+00:00</updated> 
        <content type="html">
&lt;p&gt;This is an excellent bare-bones example showing the base &amp;quot;root level&amp;quot; mapping which seems to work ok, but there is a quirky difference between web.xml&apos;s filter-mapping/url-pattern behavior and the GuiceServletContextListener&apos;s serve(urlPattern) behavior for non-root-level paths.  The JEE pattern matches more actual urls.  For example, if the url-pattern were &amp;quot;/someresource/*&amp;quot; it would match &amp;quot;/myresource/metadata&amp;quot; and &amp;quot;/myresource?param1=2&amp;quot; and even &amp;quot;/myresource&amp;quot; but serve(&amp;quot;/myresource/*&amp;quot;) won&apos;t match all of those, and serve(&amp;quot;/myresource&amp;quot;) won&apos;t either.  You would need to serve() both patterns to get the same coverage.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1578901398704</id> 
        <title type="html">Re: Configuring automatic push by successfully build</title>
        <author><name>SANJEEV PRAJAPATI</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1578901398704"/>
        <published>2020-01-13T07:43:18+00:00</published>
        <updated>2020-01-13T07:43:18+00:00</updated> 
        <content type="html">
&lt;p&gt;Let See we are working on Multi pipeline project for CI-CD for one project we are using multiple repository. &lt;br/&gt;
Example : we have &lt;br/&gt;
		1. one repository having data &apos;a&apos; in A repository. its also store the Jenkins command.&lt;br/&gt;
		2. second for some data &apos;b&apos;, store in B repository.&lt;br/&gt;
		I am performing some addition between &apos;a&apos; (A) and &apos;b&apos; (B) let se output is &apos;c&apos; .&lt;br/&gt;
		now I wanted to push the expected output &apos;c&apos; to the different repository C.&lt;/p&gt;


&lt;p&gt;		In (C) repository I already have some data. I don&apos;t want to create bare repository.&lt;/p&gt;


&lt;p&gt;		the error i was facing is&lt;br/&gt;
		/jenkins/workspace/A@tmp/durable-ssasd/script.sh: 5: /jenkins/workspace/A@tmp/durable-ssasd/script.sh: git: not found&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/in-container-jms-consumer-producer#comment-1574103228718</id> 
        <title type="html">Re: In-container JMS consumer/producer example</title>
        <author><name>thurman</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/in-container-jms-consumer-producer#comment-1574103228718"/>
        <published>2019-11-18T18:53:48+00:00</published>
        <updated>2019-11-18T18:53:48+00:00</updated> 
        <content type="html">
&lt;p&gt;Agreed...after fighting with quickstarts stuff for days I was literally able to get this to work 15 mins...thanks a ton&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1573537721042</id> 
        <title type="html">Re: Configuring automatic push by successfully build</title>
        <author><name>Madhu</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1573537721042"/>
        <published>2019-11-12T05:48:41+00:00</published>
        <updated>2019-11-12T05:48:41+00:00</updated> 
        <content type="html">
&lt;p&gt;Hi,&lt;/p&gt;


&lt;p&gt;can you please help me to provide the process steps to publish the artifacts into GitHub server using Jenkins git publisher, Actually i am trying to push the artifacts into Azure local git not sure how to do it.&lt;br/&gt;
What would be the Target remote name? and where the git publisher will get the portal login details?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1562764787370</id> 
        <title type="html">Re: Configuring automatic push by successfully build</title>
        <author><name>Tom</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/configuring-automatic-push-by-successfully#comment-1562764787370"/>
        <published>2019-07-10T13:19:47+00:00</published>
        <updated>2019-07-10T13:19:47+00:00</updated> 
        <content type="html">
&lt;p&gt;Git publisher is not present in Jenkins v.2.176.1 or the git plugin v.3.10.1&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/how-to-configure-wildfly-to#comment-1554859808713</id> 
        <title type="html">Re: How to configure WildFly to use secure session cookie and httpOnly</title>
        <author><name>Robert Benkovitz</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/how-to-configure-wildfly-to#comment-1554859808713"/>
        <published>2019-04-10T01:30:08+00:00</published>
        <updated>2019-04-10T01:30:08+00:00</updated> 
        <content type="html">
&lt;p&gt;In Wildfly 10.1, this no longer seems to be an option - &amp;quot;session-cookie&amp;quot; no longer exists as a value for &amp;quot;setting&amp;quot; - any other way to do it?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/using-jpa-2-1-attributeconverter#comment-1539901274776</id> 
        <title type="html">Re: Using JPA 2.1 AttributeConverter against Java8 LocalDate / LocalDateTime</title>
        <author><name>Kohei</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/using-jpa-2-1-attributeconverter#comment-1539901274776"/>
        <published>2018-10-18T22:21:14+00:00</published>
        <updated>2018-10-18T22:21:14+00:00</updated> 
        <content type="html">
&lt;p&gt;Hi Gourav, one possibility is that if you use SE environment you need to declare the converter into persistence.xml. Like this &lt;a href=&quot;https://stackoverflow.com/questions/27574855/registering-converters-in-jpa-2-1-with-eclipselink&quot;&gt;https://stackoverflow.com/questions/27574855/registering-converters-in-jpa-2-1-with-eclipselink&lt;/a&gt; hope this helps&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/using-jpa-2-1-attributeconverter#comment-1539869643205</id> 
        <title type="html">Re: Using JPA 2.1 AttributeConverter against Java8 LocalDate / LocalDateTime</title>
        <author><name>Gourav kumar</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/using-jpa-2-1-attributeconverter#comment-1539869643205"/>
        <published>2018-10-18T13:34:03+00:00</published>
        <updated>2018-10-18T13:34:03+00:00</updated> 
        <content type="html">
&lt;p&gt;Can you tell me one thing, if i m using autoApply in @Convert in hibernate 4.3.1 version not working. Their is any reason?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/configuring-james-to-sign-dkim#comment-1537565417758</id> 
        <title type="html">Re: Configuring James to sign DKIM for outbound mails</title>
        <author><name>AC</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/configuring-james-to-sign-dkim#comment-1537565417758"/>
        <published>2018-09-21T21:30:17+00:00</published>
        <updated>2018-09-21T21:30:17+00:00</updated> 
        <content type="html">
&lt;p&gt;Nevermind.  I was able to get around the problem using the override suggestion found here:&lt;br/&gt;
 &lt;a href=&quot;https://stackoverflow.com/questions/3937195/maven-how-to-override-the-dependency-added-by-a-library&quot;&gt;https://stackoverflow.com/questions/3937195/maven-how-to-override-the-dependency-added-by-a-library&lt;/a&gt;&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/configuring-james-to-sign-dkim#comment-1537533850314</id> 
        <title type="html">Re: Configuring James to sign DKIM for outbound mails</title>
        <author><name>AC</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/configuring-james-to-sign-dkim#comment-1537533850314"/>
        <published>2018-09-21T12:44:10+00:00</published>
        <updated>2018-09-21T12:44:10+00:00</updated> 
        <content type="html">
&lt;p&gt;When I try to compile with &amp;quot;mvn clean install&amp;quot; I get:&lt;/p&gt;


&lt;p&gt;Failed to collect dependencies at org.apache.james:apache-mailet-base:jar:2.5.1-SNAPSHOT&lt;/p&gt;


&lt;p&gt;But I can&apos;t locate version 2.5.1 of mailet base.  Do you know where I can get it?&lt;/p&gt;


&lt;p&gt;Thanks.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/jukito-integration-with-jpa-and#comment-1534656512877</id> 
        <title type="html">Re: Jukito integration with JPA and guice-persist</title>
        <author><name>chankane</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/jukito-integration-with-jpa-and#comment-1534656512877"/>
        <published>2018-08-19T05:28:32+00:00</published>
        <updated>2018-08-19T05:28:32+00:00</updated> 
        <content type="html">
&lt;p&gt;失礼いたします．記事を読んでいて疑問が浮かんだので質問させてくださいませ．&lt;/p&gt;


&lt;p&gt;EmployeeServiceTestクラスから Entitymanager を取り除き，さらに&lt;br/&gt;
@Test&lt;br/&gt;
@Transactional&lt;br/&gt;
public void findAllNamesShouldReturnExpectedResult() ...&lt;br/&gt;
とすることは可能でしょうか？&lt;/p&gt;


&lt;p&gt;まとめると，&lt;br/&gt;
ビジネスロジックからEntityManagerを切り離す AND ビジネスロジックでトランザクション処理を行うことは可能でしょうか？&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/testing-guice-persist-nested-transactional#comment-1533556993412</id> 
        <title type="html">Re: Testing guice-persist nested @Transactional behavior</title>
        <author><name>hallel</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/testing-guice-persist-nested-transactional#comment-1533556993412"/>
        <published>2018-08-06T12:03:13+00:00</published>
        <updated>2018-08-06T12:03:13+00:00</updated> 
        <content type="html">
&lt;p&gt;thanks alot!&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-ejb-apex#comment-1532523741720</id> 
        <title type="html">Re: Avoiding EJBException wrapping</title>
        <author><name>Given</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-ejb-apex#comment-1532523741720"/>
        <published>2018-07-25T13:02:21+00:00</published>
        <updated>2018-07-25T13:02:21+00:00</updated> 
        <content type="html">
&lt;p&gt;Thanks a lot. You helped me save a lot of time :)&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-jenkins-sshdeploy#comment-1532007712825</id> 
        <title type="html">Re: Deploying with Jenkins Publish Over SSH Plugin</title>
        <author><name>Nagendra</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-jenkins-sshdeploy#comment-1532007712825"/>
        <published>2018-07-19T13:41:52+00:00</published>
        <updated>2018-07-19T13:41:52+00:00</updated> 
        <content type="html">
&lt;p&gt;can pls tell me the how to deploy the php applications by using SSH plugin in jenkins CI...I was configured but what are the credintials we need to give  the in build envoronment&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/using-multiple-instances-of-wildfly#comment-1529671844462</id> 
        <title type="html">Re: Using multiple instances of WildFly on shared home directory</title>
        <author><name>Kohei</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/using-multiple-instances-of-wildfly#comment-1529671844462"/>
        <published>2018-06-22T12:50:44+00:00</published>
        <updated>2018-06-22T12:50:44+00:00</updated> 
        <content type="html">
&lt;p&gt;Hi Viny,&lt;/p&gt;


&lt;p&gt;I have never used this on a production environment. I used this approach just for development use on my laptop. Technically it should be fine, but I wouldn&amp;rsquo;t recommend you to do that in a production environment.&lt;/p&gt;


&lt;p&gt;I recommend you to deploy your apps to one WildFly instance.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/using-multiple-instances-of-wildfly#comment-1529606237464</id> 
        <title type="html">Re: Using multiple instances of WildFly on shared home directory</title>
        <author><name>Viny Machado</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/using-multiple-instances-of-wildfly#comment-1529606237464"/>
        <published>2018-06-21T18:37:17+00:00</published>
        <updated>2018-06-21T18:37:17+00:00</updated> 
        <content type="html">
&lt;p&gt;Hello,&lt;br/&gt;
I know this post is old but I&apos;d like to read your thoughts on that. Is this a valid approach for a production enviroment? I mean, I usually work with one wildfly instance per host for just one app. But because of hardware limitations I have to use the same host for several apps. Do you think your approach is viable for that? Have you ever used on production something like this?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1519261906734</id> 
        <title type="html">Re: Lean example of Tomcat 8 + Guice 4 + Jersey 2.19</title>
        <author><name>Kohei</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1519261906734"/>
        <published>2018-02-22T01:11:46+00:00</published>
        <updated>2018-02-22T01:11:46+00:00</updated> 
        <content type="html">
&lt;p&gt;Hi Teodor, I have no wonder that my example doesn&amp;rsquo;t work on a full fledged Java EE container (GlassFish) because it has its own JAX-RS and CDI implementations out of box. I recommend you not to use Guice and Jersey this way but to use its out of box implementations.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1519250749002</id> 
        <title type="html">Re: Lean example of Tomcat 8 + Guice 4 + Jersey 2.19</title>
        <author><name>Teodor</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/lean-example-of-tomcat-82#comment-1519250749002"/>
        <published>2018-02-21T22:05:49+00:00</published>
        <updated>2018-02-21T22:05:49+00:00</updated> 
        <content type="html">
&lt;p&gt;Hi,&lt;/p&gt;


&lt;p&gt;Why doesn&apos;t work on glassfish 4 or 5?&lt;br/&gt;
I tried to deploy .war on glassfish server but doesn&apos;t work.&lt;br/&gt;
This is the error:&lt;/p&gt;


&lt;p&gt;Error occurred during deployment: Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: java.lang.IllegalArgumentException: javax.servlet.ServletException: com.sun.enterprise.container.common.spi.util.InjectionException: Error creating managed object for class: class guice.tomcat.MyJerseyGuiceServletContextListener. Please see server.log for more details.&lt;/p&gt;


&lt;p&gt;Have you any idea?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/configuring-james-to-use-ssl#comment-1516385746643</id> 
        <title type="html">Re: Configuring James to use SSL</title>
        <author><name>Matthew Delaney</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/configuring-james-to-use-ssl#comment-1516385746643"/>
        <published>2018-01-19T18:15:46+00:00</published>
        <updated>2018-01-19T18:15:46+00:00</updated> 
        <content type="html">
&lt;p&gt;Why is it that we need a separate smtp server for SSL connections? Why not just have one that supports it?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/jpa-builder-pattern#comment-1515061545200</id> 
        <title type="html">Re: JPA Builder Pattern</title>
        <author><name>yun</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/jpa-builder-pattern#comment-1515061545200"/>
        <published>2018-01-04T10:25:45+00:00</published>
        <updated>2018-01-04T10:25:45+00:00</updated> 
        <content type="html">
&lt;p&gt;Why did you implement the service class in the domain class instead of building the builder?&lt;/p&gt;


&lt;p&gt;Is it because the domain class is not a singleton?&lt;/p&gt;


&lt;p&gt;I wonder why you have implemented it in the service class.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/in-container-jms-consumer-producer#comment-1514800163196</id> 
        <title type="html">Re: In-container JMS consumer/producer example</title>
        <author><name>Joan Killeen</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/in-container-jms-consumer-producer#comment-1514800163196"/>
        <published>2018-01-01T09:49:23+00:00</published>
        <updated>2018-01-01T09:49:23+00:00</updated> 
        <content type="html">
&lt;p&gt;You really could not have made this simpler to follow. This is extremely well written and and most helpful in my hour of need :-)&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-test-wiremockunstable#comment-1512418702004</id> 
        <title type="html">Re: Mocking a unstable HTTP server with WireMock</title>
        <author><name>Akhil Vashisht</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-test-wiremockunstable#comment-1512418702004"/>
        <published>2017-12-04T20:18:22+00:00</published>
        <updated>2017-12-04T20:18:22+00:00</updated> 
        <content type="html">
&lt;p&gt;Hi,&lt;/p&gt;


&lt;p&gt;First of all thanks for the useful post. Actually i am also trying to achieve the similar scenario where first two times retry error will be thrown and taking reference from this post i have create my own file with some changes(where I am not using JUNITs and my changes is for JAVA Usage)  but now the problem is it is working fine if single server/instance/browsers/thread is accessing it but if there are multiple servers/thread its not working as expected.&lt;br/&gt;
As in wiremock the state is changing. So suppose first customer tries the first retry and second customer comes in the middle then there is mismatch. In short my question is how to make it synchronized or multi thread safe?&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/managing-multiple-jpa-persistence-units#comment-1511821616713</id> 
        <title type="html">Re: Managing multiple JPA persistence units with guice-persist</title>
        <author><name>anor1k</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/managing-multiple-jpa-persistence-units#comment-1511821616713"/>
        <published>2017-11-27T22:26:56+00:00</published>
        <updated>2017-11-27T22:26:56+00:00</updated> 
        <content type="html">
&lt;p&gt;While this solves for multiple persistence unit, can we have these units in different jars? &lt;/p&gt;


&lt;p&gt;I want to store common daos in a different jar. The idea is to store separate persistence.xml files. The modules entities specified in its own file and allow it to inherit other entities via dependencies.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1511396960782</id> 
        <title type="html">Re: How to send Email at every build with Jenkins</title>
        <author><name>Kohei</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1511396960782"/>
        <published>2017-11-23T00:29:20+00:00</published>
        <updated>2017-11-23T00:29:20+00:00</updated> 
        <content type="html">
&lt;p&gt;@ashu @kk I think checking debug output of JavaMail would help. Try setting the system property mail.debug=true and checking Jenkins log. FYI: &lt;a href=&quot;http://jenkins-ci.361315.n4.nabble.com/JIRA-JENKINS-16746-Unable-to-send-email-since-Jenkins-1-500-td4655056.html&quot;&gt;http://jenkins-ci.361315.n4.nabble.com/JIRA-JENKINS-16746-Unable-to-send-email-since-Jenkins-1-500-td4655056.html&lt;/a&gt;&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1511374384128</id> 
        <title type="html">Re: How to send Email at every build with Jenkins</title>
        <author><name>kk</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1511374384128"/>
        <published>2017-11-22T18:13:04+00:00</published>
        <updated>2017-11-22T18:13:04+00:00</updated> 
        <content type="html">
&lt;p&gt;@Kohei Nozaki - I am also facing same issue. please help me on this.&lt;/p&gt;


&lt;p&gt;channel stopped&lt;br/&gt;
Email was triggered for: Always&lt;br/&gt;
Sending email for trigger: Always&lt;br/&gt;
Sending email to: kyle@example.com&lt;br/&gt;
Finished: SUCCESS&lt;/p&gt;


&lt;p&gt;But I m not getting mail.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/setting-up-apache-james-mail#comment-1508432834906</id> 
        <title type="html">Re: Setting up Apache James mail server</title>
        <author><name>klarson</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/setting-up-apache-james-mail#comment-1508432834906"/>
        <published>2017-10-19T17:07:14+00:00</published>
        <updated>2017-10-19T17:07:14+00:00</updated> 
        <content type="html">
&lt;p&gt;Awesome information! Thank you for posting this!&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1507036291765</id> 
        <title type="html">Re: How to send Email at every build with Jenkins</title>
        <author><name>ashu</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1507036291765"/>
        <published>2017-10-03T13:11:31+00:00</published>
        <updated>2017-10-03T13:11:31+00:00</updated> 
        <content type="html">
&lt;p&gt;@Kohei Nozaki - As per your blog I am getting below output  - &lt;/p&gt;


&lt;p&gt;channel stopped&lt;br/&gt;
Email was triggered for: Always&lt;br/&gt;
Sending email for trigger: Always&lt;br/&gt;
Sending email to: kyle@example.com&lt;br/&gt;
Finished: SUCCESS&lt;/p&gt;


&lt;p&gt;But I m not getting mail.&lt;/p&gt;

</content>
    </entry>
        <entry>
        <id>https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1506965926386</id> 
        <title type="html">Re: How to send Email at every build with Jenkins</title>
        <author><name>jagan</name></author>
        <link rel="alternate" type="text/html" href="https://nozaki.me/roller/kyle/entry/articles-jenkins-email#comment-1506965926386"/>
        <published>2017-10-02T17:38:46+00:00</published>
        <updated>2017-10-02T17:38:46+00:00</updated> 
        <content type="html">
&lt;p&gt;HI ,&lt;br/&gt;
How can i send coverage results as notification of email body not attachment or link.. we receive coverage roprts as an email message in body of email notification&lt;/p&gt;

</content>
    </entry>
    </feed>

