Posts

Showing posts from May, 2018

org.apache.maven.archiver.MavenArchiver.getManifest(org.apache.maven.project.MavenProject, org.apache.maven.archiver.MavenArchiveConfiguration)

Image
eclipse >   Help  > Install New Software > add From  Help  >  Install New Software.. , add a new repository (via the  Add..  option), pointing to any of the following URLs: 1.    https://otto.takari.io/content/sites/m2e.extras/m2eclipse-mavenarchiver/0.17.2/N/LATEST/      or 2.    http://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-mavenarchiver/0.17.2/N/LATEST/ Then follow the update wizard as usual. Eclipse would then require a restart. Afterwards, a further  Update Project..  on the concerned Maven project would remove any error and your Maven build could then enjoy the benefit of the latest  maven-jar-plugin  version. From Run As >  Run Configurations

IE browser Version Check script

/* function getInternetExplorerVersion(){   var rv = -1; // Return value assumes failure.   if (navigator.appName == 'Microsoft Internet Explorer')   {     var ua = navigator.userAgent;     var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");     if (re.exec(ua) != null)       rv = parseFloat( RegExp.$1 );   }   return rv; } */

org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'ManagerService' is defined

Image
service 어노테이션이 빠져 발생한 에러