Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
springboot@Configurable_Spring_Spring Boot_Javabeans_Spring Aop - Fatal编程技术网

springboot@Configurable

springboot@Configurable,spring,spring-boot,javabeans,spring-aop,Spring,Spring Boot,Javabeans,Spring Aop,我正在尝试在spring引导应用程序下的非spring托管类中配置自动连线。 我在tomcat服务器下部署的web应用程序下成功地运行了这个。 但当我想在spring boot下运行时,什么都不起作用 我制作了一个非常简单的应用程序来检查此功能: 来自web app int tomcat的控制台结果: ...:::TEST CONTROLLER ...:::TEST autowired in cotrnoller: com.mycompany.test_aop.Test@30ea7445 ...

我正在尝试在spring引导应用程序下的非spring托管类中配置
自动连线
。
我在tomcat服务器下部署的web应用程序下成功地运行了这个。
但当我想在spring boot下运行时,什么都不起作用

我制作了一个非常简单的应用程序来检查此功能:

来自web app int tomcat的控制台结果:

...:::TEST CONTROLLER
...:::TEST autowired in cotrnoller: com.mycompany.test_aop.Test@30ea7445
...:::NEW
...:::Check: com.mycompany.test_aop.Test@30ea7445
spring启动应用程序的控制台结果:

...:::TEST CONTROLLER
...:::TEST autowired in cotrnoller: com.mycompany.test_aop.Test@627ae77d
...:::NEW
...:::Check: null
我读了很多关于配置SpringBoot应用程序的热门话题,但都没有效果

我尝试将param-javaagent设置为spring-instrument.jar,但没有效果

我为此挣扎了三天,但没有任何效果

应用程序:

pom.xml:

 <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>pl.com.eurohost</groupId>
    <artifactId>aop_test</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <repositories>
        <repository>
            <id>unknown-jars-temp-repo</id>
            <name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name>
            <url>file:${project.basedir}/lib</url>
        </repository>
    </repositories>
    <dependencies>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>

        <dependency>

            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>

        <dependency>

            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>

        <dependency>

            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-json</artifactId>
            <version>1.19</version>
        </dependency>
        <dependency>
            <groupId>com.sun.jersey</groupId>
            <artifactId>jersey-servlet</artifactId>
            <version>1.19</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <version>1.3.3.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>4.2.5.RELEASE</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>4.2.5.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.6</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-instrument</artifactId>
            <version>4.2.5.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>1.3.3.RELEASE</version>
            <type>pom</type>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-agent</artifactId>
            <version>2.5.6.SEC03</version>
        </dependency>
    </dependencies>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>1.3.3.RELEASE</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
Web.java:

package com.mycompany.test_aop;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class web {
    @Autowired
    Test t;

    @RequestMapping(value = "/")
    public @ResponseBody String root(){
        System.out.println("...:::TEST CONTROLLER");
        System.out.println("...:::TEST autowired in cotrnoller: "+t);
        Test2 a = new Test2();
        a.check();
        return "HI!";
    }
}
Test.java:

package com.mycompany.test_aop;

import org.springframework.stereotype.Service;


@Service
public class Test {
    public void display() {
        System.out.println("...:::TEST CLASS CALL DISPLAY");

    }
}
Test2.java

package com.mycompany.test_aop;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Configurable;

@Configurable
public class Test2 {
    @Autowired
    private Test t;

    public Test2() {
        System.out.println("...:::NEW");
    }

    public void check() {
        System.out.println("...:::Check: "+t);
    }


}
Webapp有不同的pom、附加文件app-servlet.xml,并且没有主方法:

Main.java

package com.mycompany.test_aop;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableLoadTimeWeaving;
import org.springframework.context.annotation.aspectj.EnableSpringConfigured;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@EnableSpringConfigured
@EnableLoadTimeWeaving
@ComponentScan(value = "com.mycompany.test_aop")
@Configuration
@EnableWebMvc
public class Main extends WebMvcConfigurerAdapter {


}
app-servlet.xml:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">


    <mvc:default-servlet-handler/>

    <context:annotation-config/>
    <bean class="com.mycompany.test_aop.Main"/>


    <mvc:annotation-driven>
    </mvc:annotation-driven>

</beans>

使用Autowire注释

@Autowired
Test2 a;  

 @RequestMapping(value = "/")
    public @ResponseBody String root(){
        System.out.println("...:::TEST CONTROLLER");
        System.out.println("...:::TEST autowired in cotrnoller: "+t);
        Test2 a = new Test2();//instead of this use autowired of test2          
        a.check();
        return "HI!";                

如果您给thist2a=newtest2();它将使用新对象启动,然后使用Autowire注释仅显示NULL

@Autowired
Test2 a;  

 @RequestMapping(value = "/")
    public @ResponseBody String root(){
        System.out.println("...:::TEST CONTROLLER");
        System.out.println("...:::TEST autowired in cotrnoller: "+t);
        Test2 a = new Test2();//instead of this use autowired of test2          
        a.check();
        return "HI!";                
如果您给thist2a=newtest2();它将使用新对象启动,然后只显示NULL