4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
    Type 1 or more characters for results.
    Links per page: 20 50 100
    ◄Older
    page 1 / 4
    69 results tagged java x
    • jsp - Accessing a jstl variable inside a scriptlet - Stack Overflow

      Aujourd'hui j'ai du debug un bout d'app Java bien ancienne. Toujours du pur bonheur, ça me rappelle le Master :)

      October 21, 2016 at 2:06:44 PM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/19807156/accessing-a-jstl-variable-inside-a-scriptlet
      hate java love
    • Tomcat load balancing – mod_proxy vs mod_jk le match | Blog Technique Xebia - Cabinet de conseil IT

      Bon, c'est bien comme je pensais, ça ne sert plus à grand chose en 2016.

      July 3, 2016 at 8:34:31 PM GMT+2 - permalink - archive.org - http://blog.xebia.fr/2010/02/03/tomcat-load-balancing-mod_proxy-vs-mod_jk-le-match/
      ajp java
    • Has anyone ever got a remote JMX JConsole to work? - Stack Overflow

      java </3

      April 21, 2016 at 9:45:38 AM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/151238/has-anyone-ever-got-a-remote-jmx-jconsole-to-work
      java
    • Getting Started with the G1 Garbage Collector
      April 19, 2016 at 11:23:31 AM GMT+2 - permalink - archive.org - http://www.oracle.com/technetwork/tutorials/tutorials-1876574.html
      g1 java
    • Garbage First Garbage Collector Tuning
      April 18, 2016 at 5:17:52 PM GMT+2 - permalink - archive.org - http://www.oracle.com/technetwork/articles/java/g1gc-1984535.html
      g1 java
    • Move Cassandra 2.1 to G1 garbage collector — Medium

      via skunnyk

      April 18, 2016 at 4:19:40 PM GMT+2 - permalink - archive.org - https://medium.com/@mlowicki/move-cassandra-2-1-to-g1-garbage-collector-b9fb27365509#.kgq5f1cpu
      cassandra g1 java
    • Twiddle | JBoss Developer

      JBoss provides a simple command line tool that allows for interaction with a remote JMX server instance. This tool is called twiddle (for twiddling bits via JMX) and is located in the bin directory of the distribution. Twiddle is a command execution tool, not a general command shell.

      April 8, 2016 at 5:47:30 PM GMT+2 - permalink - archive.org - https://developer.jboss.org/wiki/Twiddle?_sscc=t
      java jmx
    • Programing Excavation: Taking care of the Garbage in Cassandra
      December 7, 2015 at 2:59:04 PM GMT+1 - permalink - archive.org - http://progexc.blogspot.co.il/2015/12/taking-care-of-garbage-in-cassandra.html
      cassandra gc java
    • Step by step instructions for securing JMX authentication for nodetool utility, OpsCenter and JConsole : Support
      July 11, 2014 at 2:26:21 PM GMT+2 - permalink - archive.org - https://support.datastax.com/entries/43692547-Step-by-step-instructions-for-securing-JMX-authentication-for-nodetool-utility-OpsCenter-and-JConsol
      authentication cassandra java jmx
    • PrimeFaces

      framework java utilisé pour le projet en RIE

      June 25, 2014 at 10:19:59 AM GMT+2 - permalink - archive.org - http://www.primefaces.org/
      framework j2e java
    • Saying taht java..

      'Saying that Java is nice because it works on every OS is like saying that anal sex is nice because it works on every gender.'

      LOL via Skunnyk

      January 14, 2014 at 2:12:24 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?CXDrDA
      java
    • Writing an init script for a Java application | Gustavo Straube

      Comment créer un script d'init pour une application java.

      EDIT : ce truc n'a pas marché pour moi :
      s=ps -C 'java -jar /path/to/application.jar' -o pid h
      Du coup, j'ai remplacé par :
      s=$(pgrep --full 'une string unique qui identifie la command line pour lancer mon jar')

      !/bin/sh

      #

      init script for a Java application

      #

      Check the application status

      #

      This function checks if the application is running

      check_status() {

      Running ps with some arguments to check if the PID exists

      -C : specifies the command name

      -o : determines how columns must be displayed

      h : hides the data header

      s=ps -C 'java -jar /path/to/application.jar' -o pid h

      If somethig was returned by the ps command, this function returns the PID

      if [ $s ] ; then
      return $s
      fi

      In any another case, return 0

      return 0

      }

      Starts the application

      start() {

      At first checks if the application is already started calling the check_status

      function

      check_status

      $? is a special variable that hold the "exit status of the most recently executed

      foreground pipeline"

      pid=$?

      if [ $pid -ne 0 ] ; then
      echo "The application is already started"
      exit 1
      fi

      If the application isn't running, starts it

      echo -n "Starting application: "

      Redirects default and error output to a log file

      java -jar /path/to/application.jar >> /path/to/logfile 2>&1 &
      echo "OK"
      }

      Stops the application

      stop() {

      Like as the start function, checks the application status

      check_status

      pid=$?

      if [ $pid -eq 0 ] ; then
      echo "Application is already stopped"
      exit 1
      fi

      Kills the application process

      echo -n "Stopping application: "
      kill -9 $pid &
      echo "OK"
      }

      Show the application status

      status() {

      The check_status function, again...

      check_status

      If the PID was returned means the application is running

      if [ $? -ne 0 ] ; then
      echo "Application is started"
      else
      echo "Application is stopped"
      fi

      }

      Main logic, a simple case to call functions

      case "$1" in
      start)
      start
      ;;
      stop)
      stop
      ;;
      status)
      status
      ;;
      restart|reload)
      stop
      start
      ;;
      *)
      echo "Usage: $0 {start|stop|restart|reload|status}"
      exit 1
      esac

      exit 0

      January 2, 2014 at 2:43:49 PM GMT+1 - permalink - archive.org - http://gustavostraube.wordpress.com/2009/11/05/writing-an-init-script-for-a-java-application/
      init initd jar java script
    • Jmxterm - CyclopsGroup.org Wiki

      Tool pour monitorer des values exposées en jmx
      $>beans
      $>bean java.lang:name=G1\ Eden\ Space,type=MemoryPool
      $> info
      $> get XXX

      echo "beans" | java -jar jmxterm-1.0-alpha-4-uber.jar --url localhost:9010 -n|grep -i garbage

      echo "get -b java.lang:type=Memory HeapMemoryUsage" | java -jar jmxterm-1.0-alpha-4-uber.jar --url localhost:9010 -n

      echo "get -b java.lang:name=G1\ Eden\ Space,type=MemoryPool CollectionUsage" | java -jar jmxterm-1.0-alpha-4-uber.jar --url localhost:9010 -n

      or use input file

      pid=$(ps...)
      java -jar jmxterm-1.0-alpha-4-uber.jar -n <<EOF

      open $pid
      beans
      EOF

      December 27, 2013 at 2:57:12 PM GMT+1 - permalink - archive.org - http://wiki.cyclopsgroup.org/jmxterm
      cassandra java jmx monitoring
    • Java ArrayList to Array

      ArrayList<DeviceId> reslist = new ArrayList<DeviceId>();
      reslist.add....

      return reslist.toArray(new DeviceId[reslist.size()]);

      August 29, 2013 at 11:07:57 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?b7gz8g
      array arraylist java
    • java - How to prevent the result of Servlets from being cached? - Stack Overflow

      Comment empecher le browser de mettre en cache le contenu d'une response.

      August 20, 2013 at 3:30:23 PM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/5139785/how-to-prevent-the-result-of-servlets-from-being-cached
      cache header java servlet
    • » Running a Java program as a daemon in Ubuntu Linux ZeroCool development blog

      How to run a jar the daemon way under linux

      March 7, 2013 at 4:15:14 PM GMT+1 - permalink - archive.org - http://zerocool.is-a-geek.net/?p=139
      daemon jar java
    • 20 Kick-ass programming quotes | Java Code Geeks
      November 14, 2012 at 9:36:03 AM GMT+1 - permalink - archive.org - http://www.javacodegeeks.com/2012/11/20-kick-ass-programming-quotes.html
      dev java lol quote
    • Quartz Scheduler | Performance at Any Scale
      October 24, 2012 at 5:10:00 PM GMT+2 - permalink - archive.org - http://quartz-scheduler.org/
      cron j2e java quartz
    • Using the Timer Service - The Java EE 6 Tutorial
      October 15, 2012 at 3:30:45 PM GMT+2 - permalink - archive.org - http://docs.oracle.com/javaee/6/tutorial/doc/bnboy.html
      java timer
    • Every day JSON work: comparing JSON documents for equality ("are these JSONS same?")
      July 19, 2012 at 5:13:35 PM GMT+2 - permalink - archive.org - http://www.cowtowncoder.com/blog/archives/2010/07/entry_406.html
      java json
    Links per page: 20 50 100
    ◄Older
    page 1 / 4
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation