Skip to content
View neilcarlocatalan's full-sized avatar

Block or report neilcarlocatalan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Installing Mongo Shell in Linux box Installing Mongo Shell in Linux box
    1
    ##### download mongosh v0.5.2 tarball then untar to /user/local/bin
    2
    ```
    3
    $ wget -O - https://downloads.mongodb.com/compass/mongosh-0.5.2-linux.tgz | tar -C /usr/local/bin -xzf -
    4
    ```
    5
    
                  
  2. Different Ways Creating Spring Bean ... Different Ways Creating Spring Bean for Oracle Data Source
    1
    <!-- non-XA Oracle DS wrapped with UCP with UCP pooled data source Factory -->
    2
    <bean id="dataSource" class="oracle.ucp.jdbc.PoolDataSourceFactory" factory-method="getPoolDataSource">
    3
        <property name="URL" value="jdbc:oracle:thin:@myserver:1521:mysid" />
    4
        <property name="user" value="myuser" />
    5
        <property name="password" value="mypassword" />
  3. Different Ways of Injecting Bitronix... Different Ways of Injecting Bitronix Transaction Manager
    1
        <aop:config>
    2
            <aop:pointcut id="serviceOperation" expression="your-pointcut-expression" />
    3
            <aop:advisor advice-ref="transactionAdvice" pointcut-ref="serviceOperation" />
    4
        </aop:config>
    5
    
                  
  4. How to Mavenize Liferay Plugins Ant ... How to Mavenize Liferay Plugins Ant build.xml
    1
    <?xml version="1.0"?>
    2
    <!--  Download Maven ant tasks jar form http://maven.apache.org/ant-tasks/download.html and drop it into your $ANT_HOME/lib -->
    3
    <project name="mavenized-liferay-plugins-build" basedir="." xmlns:artifact="antlib:org.apache.maven.artifact.ant" default="copy-dependencies-and-deploy">
    4
    
                  
    5
    	<import file="../build-common-portlet.xml" />