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 :)

      21 octobre 2016 à 14:06:44 UTC+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.

      3 juillet 2016 à 20:34:31 UTC+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

      21 avril 2016 à 09:45:38 UTC+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
      19 avril 2016 à 11:23:31 UTC+2 - permalink - archive.org - http://www.oracle.com/technetwork/tutorials/tutorials-1876574.html
      g1 java
    • Garbage First Garbage Collector Tuning
      18 avril 2016 à 17:17:52 UTC+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

      18 avril 2016 à 16:19:40 UTC+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.

      8 avril 2016 à 17:47:30 UTC+2 - permalink - archive.org - https://developer.jboss.org/wiki/Twiddle?_sscc=t
      java jmx
    • Programing Excavation: Taking care of the Garbage in Cassandra
      7 décembre 2015 à 14:59:04 UTC+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
      11 juillet 2014 à 14:26:21 UTC+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

      25 juin 2014 à 10:19:59 UTC+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

      14 janvier 2014 à 14:12:24 UTC+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

      2 janvier 2014 à 14:43:49 UTC+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

      27 décembre 2013 à 14:57:12 UTC+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()]);

      29 août 2013 à 11:07:57 UTC+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.

      20 août 2013 à 15:30:23 UTC+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

      7 mars 2013 à 16:15:14 UTC+1 - permalink - archive.org - http://zerocool.is-a-geek.net/?p=139
      daemon jar java
    • 20 Kick-ass programming quotes | Java Code Geeks
      14 novembre 2012 à 09:36:03 UTC+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
      24 octobre 2012 à 17:10:00 UTC+2 - permalink - archive.org - http://quartz-scheduler.org/
      cron j2e java quartz
    • Using the Timer Service - The Java EE 6 Tutorial
      15 octobre 2012 à 15:30:45 UTC+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?")
      19 juillet 2012 à 17:13:35 UTC+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